diff options
author | Kelley Cook <kelleycook@comcast.net> | 2003-01-10 18:52:40 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2003-01-10 13:52:40 -0500 |
commit | 6cd656d0f5cd899f103f33a16f0db374a21c5144 (patch) | |
tree | b61e4bec07fd98f3d018b3754e8504b5d0e9f7b2 /gcc/configure | |
parent | 45225759ed5892a2846f15af36d9b6f32e44801a (diff) | |
download | gcc-6cd656d0f5cd899f103f33a16f0db374a21c5144.zip gcc-6cd656d0f5cd899f103f33a16f0db374a21c5144.tar.gz gcc-6cd656d0f5cd899f103f33a16f0db374a21c5144.tar.bz2 |
configure.in (linker read-only and read-write section mixing): Squelch some assembler warnings.
* configure.in (linker read-only and read-write section mixing):
Squelch some assembler warnings.
* configure: Likewise.
From-SVN: r61163
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/configure b/gcc/configure index 4e87641..833cd79 100755 --- a/gcc/configure +++ b/gcc/configure @@ -8251,9 +8251,9 @@ elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then echo '.byte 1' >> conftest2.s echo '.section "myfoosect", "a"' > conftest3.s echo '.byte 0' >> conftest3.s - if $gcc_cv_as -o conftest1.o conftest1.s \ - && $gcc_cv_as -o conftest2.o conftest2.s \ - && $gcc_cv_as -o conftest3.o conftest3.s \ + if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \ + && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \ + && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \ && $gcc_cv_ld -shared -o conftest1.so conftest1.o \ conftest2.o conftest3.o; then gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \ |