diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-11 23:00:24 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-11 23:00:24 +0000 |
commit | a48ef8ee5c527137faa2aec5b9101ad63d41fbd6 (patch) | |
tree | c6ae4ff25e9c075ec9f7ce01bb43bb9632d68935 /config-ml.in | |
parent | b554ce2f9489d77acb0aa2f299d7088556348f72 (diff) | |
download | gcc-a48ef8ee5c527137faa2aec5b9101ad63d41fbd6.tar.gz |
* config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
link a trivial program with -mabi=64. If it fails, remove mabi=64
from multidirs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26355 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config-ml.in')
-rw-r--r-- | config-ml.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config-ml.in b/config-ml.in index 3a159cf31d4..ed8b1edfaf4 100644 --- a/config-ml.in +++ b/config-ml.in @@ -299,6 +299,28 @@ 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_softfloat = xno ] |