Add support for the darwin (Mac OS X) platform. (James Juhasz)
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 18 Aug 2004 00:13:37 +0000 (00:13 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 18 Aug 2004 00:13:37 +0000 (00:13 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1036 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Platform/__init__.py
src/engine/SCons/Platform/darwin.py [new file with mode: 0644]
src/engine/SCons/Tool/gnulink.py

index ad02a851656754d3bcf92ff1614798cc787dd2b3..3f80fdad6f556d1d8498722b0c8480d02f497149 100644 (file)
@@ -62,6 +62,11 @@ RELEASE 0.95 - XXX
 
   - Initialize the name of a Scanner.Classic scanner correctly.
 
+  From James Juhasz:
+
+  - Add support for the .dylib shared library suffix and the -dynamiclib
+    linker option on Mac OS X.
+
   From Steven Knight:
 
   - Add an Execute() method for executing actions directly.
index e8a4a19ad13afdf5c7819510ae42f46ab4fd2ea1..0856775a600219a9f670342f4cb7e5105a462e65 100644 (file)
@@ -73,6 +73,8 @@ def platform_default():
             return 'hpux'
         elif string.find(sys.platform, 'aix') != -1:
             return 'aix'
+        elif string.find(sys.platform, 'darwin') != -1:
+            return 'darwin'
         else:
             return 'posix'
     elif os.name == 'os2':
diff --git a/src/engine/SCons/Platform/darwin.py b/src/engine/SCons/Platform/darwin.py
new file mode 100644 (file)
index 0000000..c239c4a
--- /dev/null
@@ -0,0 +1,38 @@
+"""engine.SCons.Platform.darwin
+
+Platform-specific initialization for Mac OS X systems.
+
+There normally shouldn't be any need to import this module directly.  It
+will usually be imported through the generic SCons.Platform.Platform()
+selection method.
+"""
+
+#
+# Copyright (c) 2001, 2002, 2003, 2004 Steven Knight
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+import posix
+import os
+
+def generate(env):
+    posix.generate(env)
+    env['SHLIBSUFFIX'] = '.dylib'
index b900202fe50861bc667f1b9afe9786eb4d735e0a..6276fbe30ac8fe7677da9eb385da11d4010ac013 100644 (file)
@@ -45,6 +45,8 @@ def generate(env):
 
     if env['PLATFORM'] == 'hpux':
         env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS -shared -fPIC')
+    elif env['PLATFORM'] == 'darwin':
+        env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS -dynamiclib')
 
     # __RPATH is set to $_RPATH in the platform specification if that
     # platform supports it.