Author: sebor
Date: Sun Jun 11 14:41:48 2006
New Revision: 413536

URL: http://svn.apache.org/viewvc?rev=413536&view=rev
Log:
2006-06-11  Eric Lemings  <[EMAIL PROTECTED]>

        STDCXX-194
        * gcc.config (LDSOFLAGS): Avoided using -shared on Darwin.

Modified:
    incubator/stdcxx/trunk/etc/config/gcc.config

Modified: incubator/stdcxx/trunk/etc/config/gcc.config
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/gcc.config?rev=413536&r1=413535&r2=413536&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/gcc.config (original)
+++ incubator/stdcxx/trunk/etc/config/gcc.config Sun Jun 11 14:41:48 2006
@@ -62,7 +62,11 @@
   endif
 endif
 
-LDSOFLAGS       = -shared
+ifneq ($(OSNAME),Darwin)
+  # no -shared option for GCC on Mac OS X (Darwin)
+  LDSOFLAGS = -shared
+endif
+
 
 # -fPIC needed both to compile and link shared libs on HP-UX 11
 ifeq ($(OSNAME),HP-UX)


Reply via email to