Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / include / makeinclude / platform_macosx_jaguar.GNU
blob303a317c1dd1db25e6eeef602dd87575ecda130f
1 # -*- Makefile -*-
3 # support for Mac OS X 10.2 (jaguar), 10.3 (panther)
4 # Note: /sw/lib & /sw/include are inserted for the convience of Fink
5 #       users. Non-Fink users should simply create these directories to
6 #       eliminate the warnings.
8 threads ?= 1
9 debug ?= 1
10 optimize ?= 0
11 versioned_so ?= 0
12 with_ld = macosx
14 CC              = gcc
15 CXX             = g++
16 CFLAGS          += -Wno-long-double -I/sw/include
18 DCFLAGS         += -g
19 DLD             = libtool
20 LD              = $(CXX)
21 LDFLAGS         += -L/sw/lib -flat_namespace -undefined warning
22 LIBS            += -lcc_dynamic -lstdc++ -lSystem
24 ## dlcompat package (not part of base Darwin) is needed for dlopen() on 10.2.
25 ## Fink installer puts libraries in /sw/lib and headers in /sw/include
26 ## In order to install dlcompat do the following:
27 ##   - download fink from http://fink.sf.net
28 ##   - type:
29 ##        fink install dlcompat
30 ## 10.3 does not need this package.
31 LIBS            += -ldl
32 # 10.3 cannot do -03, this could be version dependent (probably on gcc)
33 OCFLAGS         += -O2
34 RANLIB          = ranlib
35 SOEXT           = dylib
36 SOFLAGS += -dynamic
37 SOBUILD = -o $(VSHDIR)$*.dylib $<
39 # Test for template instantiation, add to SOFLAGS if versioned_so set,
40 # add -E to LDFLAGS if using GNU ld
42 include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU