aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2001-06-13 02:12:07 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2001-06-12 22:12:07 -0400
commitfe2ee7c4a717e8256283e985faee5bd7c927d69e (patch)
tree17de95d2d224be8ec867210510c0921eed4dd5a9
parentb93e38937eaeb309d57c5e39191bdcb1c4484060 (diff)
downloadgcc-fe2ee7c4a717e8256283e985faee5bd7c927d69e.zip
gcc-fe2ee7c4a717e8256283e985faee5bd7c927d69e.tar.gz
gcc-fe2ee7c4a717e8256283e985faee5bd7c927d69e.tar.bz2
config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread multilibs to be disabled.
* config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread multilibs to be disabled. From-SVN: r43294
-rw-r--r--ChangeLog5
-rw-r--r--config-ml.in22
2 files changed, 27 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ab33d9..bd2db16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-12 David Edelsohn <edelsohn@gnu.org>
+
+ * config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
+ multilibs to be disabled.
+
2001-06-11 Daniel Berlin <dan@cgsoftware.com>
* MAINTAINERS (Write After Approval): Add myself.
diff --git a/config-ml.in b/config-ml.in
index 8c87918..16885f9 100644
--- a/config-ml.in
+++ b/config-ml.in
@@ -392,6 +392,28 @@ mips*-*-*)
esac
;;
powerpc*-*-* | rs6000*-*-*)
+ if [ x$enable_aix64 = xno ]
+ then
+ old_multidirs="${multidirs}"
+ multidirs=""
+ for x in ${old_multidirs}; do
+ case "$x" in
+ *ppc64* ) : ;;
+ *) multidirs="${multidirs} ${x}" ;;
+ esac
+ done
+ fi
+ if [ x$enable_pthread = xno ]
+ then
+ old_multidirs="${multidirs}"
+ multidirs=""
+ for x in ${old_multidirs}; do
+ case "$x" in
+ *pthread* ) : ;;
+ *) multidirs="${multidirs} ${x}" ;;
+ esac
+ done
+ fi
if [ x$enable_softfloat = xno ]
then
old_multidirs="${multidirs}"