summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoko <doko@138bc75d-0d04-0410-961f-82ee72b054a4>2007-12-02 13:27:37 +0000
committerdoko <doko@138bc75d-0d04-0410-961f-82ee72b054a4>2007-12-02 13:27:37 +0000
commit88b2912636d239abbbc47ccb5a7860006bd3d2f8 (patch)
tree8c0e8301ebb28824afc957d845a588da8971c2c5
parentfe861e753f90bb661e082547fa16b58967beb44e (diff)
downloadppe42-gcc-88b2912636d239abbbc47ccb5a7860006bd3d2f8.tar.gz
ppe42-gcc-88b2912636d239abbbc47ccb5a7860006bd3d2f8.zip
2007-12-02 Matthias Klose <doko@ubuntu.com>
* config-ml.in: Remove 64bit configure tests. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130568 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog4
-rw-r--r--config-ml.in46
2 files changed, 4 insertions, 46 deletions
diff --git a/ChangeLog b/ChangeLog
index 49447f676f5..999e59def95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-02 Matthias Klose <doko@ubuntu.com>
+
+ * config-ml.in: Remove 64bit configure tests.
+
2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* config-ml.in: Robustify against white space in absolute file
diff --git a/config-ml.in b/config-ml.in
index 9adc9e074c6..3ae19743b76 100644
--- a/config-ml.in
+++ b/config-ml.in
@@ -382,28 +382,6 @@ mips*-*-*)
esac
done
fi
- case " $multidirs " in
- *" mabi=64 "*)
- # We will not be able to create libraries with -mabi=64 if
- # we cannot even link a trivial program. It usually
- # indicates the 64bit libraries are missing.
- if echo 'main() {}' > conftest.c &&
- ${CC-gcc} -mabi=64 conftest.c -o conftest; then
- :
- else
- echo Could not link program with -mabi=64, disabling it.
- old_multidirs="${multidirs}"
- multidirs=""
- for x in ${old_multidirs}; do
- case "$x" in
- *mabi=64* ) : ;;
- *) multidirs="${multidirs} ${x}" ;;
- esac
- done
- fi
- rm -f conftest.c conftest
- ;;
- esac
;;
powerpc*-*-* | rs6000*-*-*)
if [ x$enable_aix64 = xno ]
@@ -495,30 +473,6 @@ powerpc*-*-* | rs6000*-*-*)
done
fi
;;
-sparc*-*-*)
- case " $multidirs " in
- *" m64 "*)
- # We will not be able to create libraries with -m64 if
- # we cannot even link a trivial program. It usually
- # indicates the 64bit libraries are missing.
- if echo 'main() {}' > conftest.c &&
- ${CC-gcc} -m64 conftest.c -o conftest; then
- :
- else
- echo Could not link program with -m64, disabling it.
- old_multidirs="${multidirs}"
- multidirs=""
- for x in ${old_multidirs}; do
- case "$x" in
- *m64* ) : ;;
- *) multidirs="${multidirs} ${x}" ;;
- esac
- done
- fi
- rm -f conftest.c conftest
- ;;
- esac
- ;;
esac
# Remove extraneous blanks from multidirs.
OpenPOWER on IntegriCloud