diff options
author | Steve Huston <shuston@riverace.com> | 2000-06-16 00:28:14 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2000-06-16 00:28:14 +0000 |
commit | b42a1c71c5a5f63b34a7790214872b128cfc1705 (patch) | |
tree | ad0c8a8f221bb78018c3de3e63dac58049be4ee3 /include | |
parent | dd1050a48c616e58dc77e2d109b01fc20c463473 (diff) | |
download | ATCD-b42a1c71c5a5f63b34a7790214872b128cfc1705.tar.gz |
ChangeLogTag:Thu Jun 15 16:10:51 2000 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_aix4_cset++.GNU | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/makeinclude/platform_aix4_cset++.GNU b/include/makeinclude/platform_aix4_cset++.GNU index 37f3c7da559..44ef5396f7b 100644 --- a/include/makeinclude/platform_aix4_cset++.GNU +++ b/include/makeinclude/platform_aix4_cset++.GNU @@ -22,6 +22,9 @@ endif ifeq (,$(distrib)) distrib = 0 endif +ifeq (,$(exceptions)) + exceptions = 1 +endif ifeq (,$(optimize)) optimize = 0 endif @@ -29,6 +32,11 @@ ifeq (,$(threads)) threads = 1 endif +# There's no way to turn off exceptions with IBM C/C++ +ifeq (0,$(exceptions)) + exceptions = 1 +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) |