diff options
author | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-27 17:29:16 +0000 |
---|---|---|
committer | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-27 17:29:16 +0000 |
commit | b20cd4c89f0aaf47440dcd30cd23eb9d315d727a (patch) | |
tree | 7d6d447c98e33aee509c03dc1a88f952dff462fb /include/makeinclude/platform_sunos5_kcc.GNU | |
parent | 1f196b845c8cbd53be9c22ad2172b868e4aeb675 (diff) | |
download | ATCD-b20cd4c89f0aaf47440dcd30cd23eb9d315d727a.tar.gz |
Fri Oct 27 12:04:17 2000 Chris Cleeland <cleeland_c@ociweb.com>
Diffstat (limited to 'include/makeinclude/platform_sunos5_kcc.GNU')
-rw-r--r-- | include/makeinclude/platform_sunos5_kcc.GNU | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/makeinclude/platform_sunos5_kcc.GNU b/include/makeinclude/platform_sunos5_kcc.GNU index f70a81cc93f..037caf94f07 100644 --- a/include/makeinclude/platform_sunos5_kcc.GNU +++ b/include/makeinclude/platform_sunos5_kcc.GNU @@ -28,10 +28,8 @@ DCFLAGS += +K0 -g DLD = $(CXX) LD = $(CXX) -ifdef exceptions - ifneq ($exceptions,0) - CCFLAGS += --exceptions - endif # ! exceptions +ifeq (1,$(exceptions)) + CCFLAGS += --exceptions else CCFLAGS += --no_exceptions LDFLAGS += --no_exceptions @@ -104,7 +102,7 @@ endif # BIN #### -g is incompatible with -fast. If you need -g, you can #### use "-fast -O3". #### -ifdef fast +ifeq (1,$(fast)) CFLAGS += -fast +K3 DCFLAGS = LDFLAGS += -fast +K3 |