summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_aix4_g++.GNU
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-07 09:38:05 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-07 09:38:05 +0000
commit2700a87cc1d79a493a307808ee838c2cfc143c62 (patch)
tree26afe502734f042f55745036ed84e7a5612f22fb /include/makeinclude/platform_aix4_g++.GNU
parent3cafcf10bdf382476ea64e10b6a5014e3073de09 (diff)
downloadATCD-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++.GNU10
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)