summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/platform_macosx_snowleopard.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/include/makeinclude/platform_macosx_snowleopard.GNU')
-rw-r--r--ACE/include/makeinclude/platform_macosx_snowleopard.GNU17
1 files changed, 17 insertions, 0 deletions
diff --git a/ACE/include/makeinclude/platform_macosx_snowleopard.GNU b/ACE/include/makeinclude/platform_macosx_snowleopard.GNU
new file mode 100644
index 00000000000..63aa60240ca
--- /dev/null
+++ b/ACE/include/makeinclude/platform_macosx_snowleopard.GNU
@@ -0,0 +1,17 @@
+# $Id$
+
+ifeq ($(buildbits),32)
+ FLAGS_C_CC += -m32
+ LDFLAGS += -m32
+endif
+ifeq ($(buildbits),64)
+ FLAGS_C_CC += -m64
+ LDFLAGS += -m64
+endif
+ifeq ($(buildbits),universal)
+ FLAGS_C_CC += -arch i386 -arch x86_64
+ LDFLAGS += -arch i386 -arch x86_64
+endif
+
+include $(ACE_ROOT)/include/makeinclude/platform_macosx_common.GNU
+