diff options
author | Steve Huston <shuston@riverace.com> | 2004-04-14 15:35:55 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2004-04-14 15:35:55 +0000 |
commit | 487fc0c01900e2bb427d9392203f0b7c146ca405 (patch) | |
tree | 3535dc436c4abc80f4a9199bf4c970053d6c1dae /include/makeinclude | |
parent | 7ffef37f1e16a7c00bbb6179cfe01078b90f952b (diff) | |
download | ATCD-487fc0c01900e2bb427d9392203f0b7c146ca405.tar.gz |
ChangeLogTag:Wed Apr 14 11:26:20 2004 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_aix_g++.GNU | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/makeinclude/platform_aix_g++.GNU b/include/makeinclude/platform_aix_g++.GNU index bad25425eb8..a6113adf490 100644 --- a/include/makeinclude/platform_aix_g++.GNU +++ b/include/makeinclude/platform_aix_g++.GNU @@ -1,8 +1,8 @@ # $Id$ # # Platform macros for building on AIX with g++. This has been tested on -# AIX 4.3 with gcc 3. Earlier versions of gcc may compile, but are known to -# have serious problems on AIX. +# AIX 4.3 and 5 with gcc 3. Earlier versions of gcc may compile, but are +# known to have serious problems on AIX. # # Contributed by Ian Wright <I.Wright@elsevier.co.uk> # Updated for AIX 4.3 and gcc 3 by Steve Huston <shuston@riverace.com> @@ -41,6 +41,10 @@ SOEXT = a # rules.lib.GNU aix_build = 1 +ifeq (0,$(rtti)) + CFLAGS += -fno-rtti +endif + ifeq (1,$(threads)) CFLAGS += -pthread endif |