diff options
author | Andrew Senkevich <andrew.n.senkevich@gmail.com> | 2014-11-10 11:16:46 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-11-10 11:16:46 -0800 |
commit | bd80507166253107ce84245c8c93d95368abc982 (patch) | |
tree | 65001d6c92be5126da0d931380ff941ec221733d /configure.ac | |
parent | 1400983e04d7b4b5a92db79ab27b0d0ec7d8bdef (diff) | |
download | glibc-bd80507166253107ce84245c8c93d95368abc982.tar.gz glibc-bd80507166253107ce84245c8c93d95368abc982.tar.xz glibc-bd80507166253107ce84245c8c93d95368abc982.zip |
Update minimal required bunutils version to 2.22
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 9dd2c686a7..a982407d48 100644 --- a/configure.ac +++ b/configure.ac @@ -900,13 +900,15 @@ AC_PROG_LN_S LIBC_PROG_BINUTILS -# Accept binutils 2.20 or newer. +# Accept binutils 2.22 or newer. AC_CHECK_PROG_VER(AS, $AS, --version, [GNU assembler.* \([0-9]*\.[0-9.]*\)], - [2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*], AS=: critic_missing="$critic_missing as") + [2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*], + AS=: critic_missing="$critic_missing as") AC_CHECK_PROG_VER(LD, $LD, --version, [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)], - [2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*], LD=: critic_missing="$critic_missing ld") + [2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*], + LD=: critic_missing="$critic_missing ld") # These programs are version sensitive. AC_CHECK_TOOL_PREFIX |