Commit 6cd656d0 by Kelley Cook Committed by DJ Delorie

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
parent 45225759
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> 2003-01-10 Hartmut Penner <hpenner@de.ibm.com>
* doc/invoke.texi: Document -mtune, delete -mcpu * doc/invoke.texi: Document -mtune, delete -mcpu
......
...@@ -8251,9 +8251,9 @@ elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then ...@@ -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 '.byte 1' >> conftest2.s
echo '.section "myfoosect", "a"' > conftest3.s echo '.section "myfoosect", "a"' > conftest3.s
echo '.byte 0' >> conftest3.s echo '.byte 0' >> conftest3.s
if $gcc_cv_as -o conftest1.o conftest1.s \ if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest2.o conftest2.s \ && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest3.o conftest3.s \ && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
&& $gcc_cv_ld -shared -o conftest1.so conftest1.o \ && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
conftest2.o conftest3.o; then conftest2.o conftest3.o; then
gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \ gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
......
...@@ -2263,9 +2263,9 @@ elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then ...@@ -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 '.byte 1' >> conftest2.s
echo '.section "myfoosect", "a"' > conftest3.s echo '.section "myfoosect", "a"' > conftest3.s
echo '.byte 0' >> conftest3.s echo '.byte 0' >> conftest3.s
if $gcc_cv_as -o conftest1.o conftest1.s \ if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest2.o conftest2.s \ && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest3.o conftest3.s \ && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
&& $gcc_cv_ld -shared -o conftest1.so conftest1.o \ && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
conftest2.o conftest3.o; then conftest2.o conftest3.o; then
gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \ gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment