diff options
author | Andreas Jaeger <aj@suse.de> | 2001-05-11 13:08:32 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-05-11 13:08:32 +0000 |
commit | fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7 (patch) | |
tree | 2bf6dfcfa2981615a20eb0626b2d0f07bae8619f | |
parent | 2344bc54fb8136f351b31feee47500bae83288fd (diff) | |
download | glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.zip glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.tar.gz glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.tar.bz2 |
* sysdeps/unix/sysv/linux/configure.in: Check binutils version on
MIPS.
-rw-r--r-- | sysdeps/unix/sysv/linux/configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in index afe7982..7337b9d 100644 --- a/sysdeps/unix/sysv/linux/configure.in +++ b/sysdeps/unix/sysv/linux/configure.in @@ -191,3 +191,14 @@ ${ac_prefix}/include directory out of the way.]) AC_MSG_RESULT(ok) fi fi + +case "$machine" in + mips*) + AC_CHECK_PROG_VER(AS, $AS, --version, + [GNU assembler.* \([0-9]*\.[0-9.]*\(-ia64-[0-9]*\)*\)], + [2.11.90.0.[5-9]* | 2.11.90.[1-9]* | 2.11.9[1-9]* | 2.11.[1-9]* | 2.1[2-9]*| 2.[2-9]*], + AC_MSG_WARN([*** Your binutils versions are too old. +*** We strongly advise to update binutils. For details check +*** the FAQ and INSTALL documents.])) + ;; +esac |