summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-24 15:03:15 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-24 15:03:15 +0000
commit7e08d918d6cd9abfa94284b9aba604a439192a04 (patch)
treed57350af22d8756a3758f8f103cebd8fdd095744
parent858f17032cfcf50874586dca857592637e14de1f (diff)
downloadATCD-7e08d918d6cd9abfa94284b9aba604a439192a04.tar.gz
ChangeLogTag: Tue Jul 24 08:20:02 2001 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--include/makeinclude/platform_aix_ibm.GNU6
4 files changed, 29 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 087bec61430..40088534d7a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jul 24 08:20:02 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Change -O2 to -O. The optimizer seems to be a tiny
+ bit broken, which is demonstrated by a few TAO and orbsvcs
+ tests.
+
Mon Jul 23 17:38:46 2001 Ossama Othman <ossama@uci.edu>
* etc/tao_security.doxygen:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 087bec61430..40088534d7a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Tue Jul 24 08:20:02 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Change -O2 to -O. The optimizer seems to be a tiny
+ bit broken, which is demonstrated by a few TAO and orbsvcs
+ tests.
+
Mon Jul 23 17:38:46 2001 Ossama Othman <ossama@uci.edu>
* etc/tao_security.doxygen:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 087bec61430..40088534d7a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Tue Jul 24 08:20:02 2001 Chad Elliott <elliott_c@ociweb.com>
+
+ * include/makeinclude/platform_aix_ibm.GNU:
+
+ Change -O2 to -O. The optimizer seems to be a tiny
+ bit broken, which is demonstrated by a few TAO and orbsvcs
+ tests.
+
Mon Jul 23 17:38:46 2001 Ossama Othman <ossama@uci.edu>
* etc/tao_security.doxygen:
diff --git a/include/makeinclude/platform_aix_ibm.GNU b/include/makeinclude/platform_aix_ibm.GNU
index 4a04222a441..95b85def16a 100644
--- a/include/makeinclude/platform_aix_ibm.GNU
+++ b/include/makeinclude/platform_aix_ibm.GNU
@@ -138,4 +138,8 @@ LIBS += $(ACELIB) -ltli_r -ldl
# OCCFLAGS is not used by default. To used it, set optimize=1
# either in this file or on the command line.
#OCCFLAGS += -qarch=ppc -qtune=604
-OCCFLAGS += -qlibansi -O2 -qarch=com
+
+# -O2 is too much for Visual Age C++ 5.0. It ends up calling
+# the wrong methods in some cases (orbsvcs/tests/EC_Throughput).
+# Chad Elliott 7/24/2001
+OCCFLAGS += -qlibansi -O -qarch=com