mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-29 12:53:43 +08:00
* configure.in: Build gas for mips-*-*. If configuring gas and/or
ld, and the source directories exist, assume -with-gnu-as and/or -with-gnu-ld.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: Build gas for mips-*-*. If configuring gas and/or
|
||||||
|
ld, and the source directories exist, assume -with-gnu-as and/or
|
||||||
|
-with-gnu-ld.
|
||||||
|
|
||||||
Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
|
Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
|
||||||
|
|
||||||
* Makefile.in (all.normal): insert missing backslash.
|
* Makefile.in (all.normal): insert missing backslash.
|
||||||
|
17
configure.in
17
configure.in
@ -166,13 +166,6 @@ case "${host}" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
mips-dec-bsd*)
|
|
||||||
# We do want to build gas in this case. So don't use the mips-*-* case
|
|
||||||
# for this target.
|
|
||||||
;;
|
|
||||||
mips-*-*)
|
|
||||||
configdirs=`echo ${configdirs} | sed -e 's/gas//'`
|
|
||||||
;;
|
|
||||||
rs6000-*-*)
|
rs6000-*-*)
|
||||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
||||||
;;
|
;;
|
||||||
@ -199,6 +192,15 @@ case "${target}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# Set with_gnu_as and with_gnu_ld as appropriate.
|
||||||
|
if [ x${with_gnu_as} != xyes ] && echo ${configdirs} | grep gas > /dev/null && [ -d ${srcdir}/gas ]; then
|
||||||
|
with_gnu_as=yes
|
||||||
|
withoptions="$withoptions -with-gnu-as"
|
||||||
|
fi
|
||||||
|
if [ x${with_gnu_ld} != xyes ] && echo ${configdirs} | grep ld > /dev/null && [ -d ${srcdir}/ld ]; then
|
||||||
|
with_gnu_ld=yes
|
||||||
|
withoptions="$withoptions -with-gnu-ld"
|
||||||
|
fi
|
||||||
|
|
||||||
target_makefile_frag=config/mt-${bfd_target}
|
target_makefile_frag=config/mt-${bfd_target}
|
||||||
|
|
||||||
@ -207,4 +209,3 @@ target_makefile_frag=config/mt-${bfd_target}
|
|||||||
# fill-column: 131
|
# fill-column: 131
|
||||||
# End:
|
# End:
|
||||||
#
|
#
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user