diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-22 00:13:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-22 00:13:04 +0000 |
commit | 90d1d40b27ab1785e309c243e39765ff6cce9442 (patch) | |
tree | d1f05ac3c9a5e6f80b758308c41c41c80434b403 /configure | |
parent | c2248c44e4eec619d2cf53d01fef544dd2624d96 (diff) | |
download | glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.tar glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.tar.gz glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.tar.bz2 glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.zip |
* configure.in: Make GCC version check require 3.[2-9]* and no others.
* configure: Regenerated.
* manual/install.texi (Tools for Compilation): Say 3.2 is required.
(Configuring and compiling): Don't mention older GCC versions any more.
* INSTALL: Regenerated.
* manual/install.texi (Configuring and compiling, Installation,
Running make install, Linux): Linux -> GNU/Linux where appropriate.
* elf/rtld.c (_dl_start_final): Move defn before _dl_start so it can
be inlined. Declare it with always_inline if [DONT_USE_BOOTSTRAP_MAP]
and with noinline otherwise. Remove hack alloca use to prevent
inlining, we can ask for it explicitly nowadays.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1470,7 +1470,7 @@ echo "configure:1470: checking version of $CC" >&5 ac_prog_version=`$CC -v 2>&1 | sed -n 's/^.*version \([egcygnustpi-]*[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; - *gcc-2.9[5-9].*|*2.8.[1-9]*|*2.9|*2.9.[0-9]*|2.9[5-9]*|3.[0-9]*|cygnus-2.9[1-9]*|gcc-2.9[5-9]|gcc-2.1[0-9][0-9]|sgicc-*) + 3.[2-9]*) ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; @@ -1478,7 +1478,7 @@ echo "configure:1470: checking version of $CC" >&5 echo "$ac_t""$ac_prog_version" 1>&6 fi if test $ac_verc_fail = yes; then - critic_missing=gcc + critic_missing="$critic_missing gcc" fi for ac_prog in gnumake gmake make |