diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-09-12 18:15:56 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2001-09-12 18:15:56 +0200 |
commit | a8b7afb969789d5e4b4557c89e49151107eb7df1 (patch) | |
tree | 7fc4b6e29c37e23ce570636504bf528e4017696d /gcc/configure | |
parent | 3642e753f3ed1a8dfef9d5667aa0bbefca0a9c9e (diff) | |
download | gcc-a8b7afb969789d5e4b4557c89e49151107eb7df1.zip gcc-a8b7afb969789d5e4b4557c89e49151107eb7df1.tar.gz gcc-a8b7afb969789d5e4b4557c89e49151107eb7df1.tar.bz2 |
configure.in (gcc_cv_as_shf_merge): Fix a typo.
* configure.in (gcc_cv_as_shf_merge): Fix a typo.
Use --fatal-warnings option for gas.
* configure: Rebuilt.
From-SVN: r45563
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 169ba2c..e846861 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7169,12 +7169,12 @@ echo "configure:6569: checking assembler section merging support" >&5 gcc_cv_as_shf_merge=no if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then - gcc_cv_as_subsections="working SHF_MERGE support" + gcc_cv_as_shf_merge=yes fi elif test x$gcc_cv_as != x; then # Check if we support SHF_MERGE sections echo '.section .rodata.str, "aMS", @progbits, 1' > conftest.s - if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then + if $gcc_cv_as --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1; then gcc_cv_as_shf_merge=yes fi rm -f conftest.s conftest.o |