summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2003-02-07 20:43:06 +0000
committerSteve Huston <shuston@riverace.com>2003-02-07 20:43:06 +0000
commitc01f040762791e5b4e9fc90c3b1a9a64fec25dce (patch)
treebac000744b1ab40a0d8d80ccb08a7ed48b15c682
parentf6f34224768fb59011b5f794f68bb9f46c4b9082 (diff)
downloadATCD-c01f040762791e5b4e9fc90c3b1a9a64fec25dce.tar.gz
ChangeLogTag:Fri Feb 7 15:37:19 2003 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--include/makeinclude/platform_aix_ibm.GNU3
3 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 414f32e6d3f..d912d547659 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Feb 7 15:37:19 2003 Steve Huston <shuston@riverace.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU: Define DCCFLAGS with the
+ debugging options for xlC_r; Change DCFLAGS to just -g (for the C
+ compiler). Thanks to Trevor Fields <fields_t@ociweb.com> for
+ reporting this problem.
+
Fri Feb 7 15:27:40 2003 Heather Drury <drury_h@ociweb.com>
* ace/config-aix-4.x.h: Restored the defining of
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 414f32e6d3f..d912d547659 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri Feb 7 15:37:19 2003 Steve Huston <shuston@riverace.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU: Define DCCFLAGS with the
+ debugging options for xlC_r; Change DCFLAGS to just -g (for the C
+ compiler). Thanks to Trevor Fields <fields_t@ociweb.com> for
+ reporting this problem.
+
Fri Feb 7 15:27:40 2003 Heather Drury <drury_h@ociweb.com>
* ace/config-aix-4.x.h: Restored the defining of
diff --git a/include/makeinclude/platform_aix_ibm.GNU b/include/makeinclude/platform_aix_ibm.GNU
index 910c85fb107..a1614984f2a 100644
--- a/include/makeinclude/platform_aix_ibm.GNU
+++ b/include/makeinclude/platform_aix_ibm.GNU
@@ -85,7 +85,8 @@ CPPFLAGS += -DACE_AIX_VERS=$(AIX_VERS)
# -qinitauto seems like an interesting option, but some tests (specifically
# Process_Strategy_Test) hang with it turned on. This should be investigated
# at some point.
-DCFLAGS += -g -qcheck=nobounds:div:null
+DCCFLAGS += -g -qcheck=nobounds:div:null
+DCFLAGS += -g
# Now sort out the compiler differences here...
ifeq ($(XLCVERSION),0x0306)