diff options
author | Steve Huston <shuston@riverace.com> | 2001-09-05 16:00:56 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2001-09-05 16:00:56 +0000 |
commit | b7347c4eab9bd6edbb84d8a5532b7e8f94bba45d (patch) | |
tree | 8c290644803e2d4f221701c7d750f1ebadef8369 /include | |
parent | f590e3630061416a871889deb0b93e663e4cb3a8 (diff) | |
download | ATCD-b7347c4eab9bd6edbb84d8a5532b7e8f94bba45d.tar.gz |
ChangeLogTag:Wed Sep 05 12:00:42 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_aix4_g++.GNU | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/makeinclude/platform_aix4_g++.GNU b/include/makeinclude/platform_aix4_g++.GNU index cf611c443b0..3c2ababa8a1 100644 --- a/include/makeinclude/platform_aix4_g++.GNU +++ b/include/makeinclude/platform_aix4_g++.GNU @@ -34,10 +34,11 @@ endif # grab it here and pass it all to the compiler as well. AIX_MAJOR_VERS := $(shell uname -v) AIX_MINOR_VERS := $(shell uname -r) +AIX_VERS := $(AIX_MAJOR_VERS)0$(AIX_MINOR_VERS) CC = gcc CXX = g++ -CFLAGS += -W -Wall -pipe -mcpu=common -DACE_AIX_MAJOR_VERS=$(AIX_MAJOR_VERS) -DACE_AIX_MINOR_VERS=$(AIX_MINOR_VERS) +CFLAGS += -W -Wall -pipe -mcpu=common -DACE_AIX_VERS=$(AIX_VERS) CCFLAGS += $(CFLAGS) -fno-implicit-templates DCFLAGS += -g DLD = $(CXX) |