mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
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
This commit is contained in:
parent
b93e38937e
commit
fe2ee7c4a7
@ -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>
|
2001-06-11 Daniel Berlin <dan@cgsoftware.com>
|
||||||
|
|
||||||
* MAINTAINERS (Write After Approval): Add myself.
|
* MAINTAINERS (Write After Approval): Add myself.
|
||||||
|
22
config-ml.in
22
config-ml.in
@ -392,6 +392,28 @@ mips*-*-*)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
powerpc*-*-* | rs6000*-*-*)
|
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 ]
|
if [ x$enable_softfloat = xno ]
|
||||||
then
|
then
|
||||||
old_multidirs="${multidirs}"
|
old_multidirs="${multidirs}"
|
||||||
|
Loading…
Reference in New Issue
Block a user