diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-04-07 09:38:05 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-04-07 09:38:05 +0000 |
commit | 2700a87cc1d79a493a307808ee838c2cfc143c62 (patch) | |
tree | 26afe502734f042f55745036ed84e7a5612f22fb /include/makeinclude/platform_aix4_g++.GNU | |
parent | 3cafcf10bdf382476ea64e10b6a5014e3073de09 (diff) | |
download | ATCD-2700a87cc1d79a493a307808ee838c2cfc143c62.tar.gz |
ChangeLogTag: Sun Apr 7 04:22:19 2002 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'include/makeinclude/platform_aix4_g++.GNU')
-rw-r--r-- | include/makeinclude/platform_aix4_g++.GNU | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/makeinclude/platform_aix4_g++.GNU b/include/makeinclude/platform_aix4_g++.GNU index 3c2ababa8a1..0654bf3af0a 100644 --- a/include/makeinclude/platform_aix4_g++.GNU +++ b/include/makeinclude/platform_aix4_g++.GNU @@ -29,7 +29,7 @@ endif ifeq (1,$(threads)) CFLAGS += -mthreads endif - + # In case anything here or in the config depends on OS version number, # grab it here and pass it all to the compiler as well. AIX_MAJOR_VERS := $(shell uname -v) @@ -38,8 +38,14 @@ AIX_VERS := $(AIX_MAJOR_VERS)0$(AIX_MINOR_VERS) CC = gcc CXX = g++ + +# Test for template instantiation. +# +include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU + + CFLAGS += -W -Wall -pipe -mcpu=common -DACE_AIX_VERS=$(AIX_VERS) -CCFLAGS += $(CFLAGS) -fno-implicit-templates +CCFLAGS += $(CFLAGS) $(TEMPLATES_FLAG) DCFLAGS += -g DLD = $(CXX) LD = $(CXX) |