aboutsummaryrefslogtreecommitdiff
path: root/config-ml.in
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 /config-ml.in
parentb93e38937eaeb309d57c5e39191bdcb1c4484060 (diff)
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
Diffstat (limited to 'config-ml.in')
-rw-r--r--config-ml.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/config-ml.in b/config-ml.in
index 8c879184384..16885f95f0e 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}"