summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-21 14:03:23 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-21 14:03:23 +0000
commit9f1acde9820f7f46b903f9d62595bc64a09b2dee (patch)
tree15829ef306797e0fe8a655979ffcae341dcae862
parentc5b3e9462dde1366dce96c8712885e1617afea42 (diff)
downloadATCD-9f1acde9820f7f46b903f9d62595bc64a09b2dee.tar.gz
ChangeLogTag: Thu Jun 21 09:01:09 2001 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--include/makeinclude/platform_aix_ibm.GNU2
4 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 32794ffa2df..dbd556aeed1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Jun 21 09:01:09 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Fix for 64-bit AIX builds. The ARFLAGS definition must have -X64
+ before any of the other options.
+
Thu Jun 21 08:27:40 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/config-aix-4.x.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 32794ffa2df..dbd556aeed1 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Thu Jun 21 09:01:09 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Fix for 64-bit AIX builds. The ARFLAGS definition must have -X64
+ before any of the other options.
+
Thu Jun 21 08:27:40 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/config-aix-4.x.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 32794ffa2df..dbd556aeed1 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Thu Jun 21 09:01:09 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Fix for 64-bit AIX builds. The ARFLAGS definition must have -X64
+ before any of the other options.
+
Thu Jun 21 08:27:40 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/config-aix-4.x.h:
diff --git a/include/makeinclude/platform_aix_ibm.GNU b/include/makeinclude/platform_aix_ibm.GNU
index c1c4493beb8..acb690359a9 100644
--- a/include/makeinclude/platform_aix_ibm.GNU
+++ b/include/makeinclude/platform_aix_ibm.GNU
@@ -102,7 +102,7 @@ else
ifeq ($(buildbits),64)
DLD += -q64
CCFLAGS += -q64
- ARFLAGS += -X 64
+ ARFLAGS := -X64 $(ARFLAGS)
endif
else
CXX = echo "Unrecognized compiler version $(XLCVERSION)\n"