summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-10 18:52:40 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-10 18:52:40 +0000
commitc96f876ed12d6a9a0f10e74ebdd93006fad1c8b9 (patch)
treeb61e4bec07fd98f3d018b3754e8504b5d0e9f7b2 /gcc
parent23aecd7a257ebdb428265c0808ba5269f8156d01 (diff)
downloadppe42-gcc-c96f876ed12d6a9a0f10e74ebdd93006fad1c8b9.tar.gz
ppe42-gcc-c96f876ed12d6a9a0f10e74ebdd93006fad1c8b9.zip
* configure.in (linker read-only and read-write section mixing):
Squelch some assembler warnings. * configure: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61163 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rwxr-xr-xgcc/configure6
-rw-r--r--gcc/configure.in6
3 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d4a19fef7cb..1a63339f9aa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2003-01-10 Kelley Cook <kelleycook@comcast.net>
+
+ * configure.in (linker read-only and read-write section mixing):
+ Squelch some assembler warnings.
+ * configure: Likewise.
+
2003-01-10 Hartmut Penner <hpenner@de.ibm.com>
* doc/invoke.texi: Document -mtune, delete -mcpu
diff --git a/gcc/configure b/gcc/configure
index 4e876410515..833cd79245c 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 \
diff --git a/gcc/configure.in b/gcc/configure.in
index a5ae0063e4b..e7ca3df4c8c 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2263,9 +2263,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 \
OpenPOWER on IntegriCloud