From: Adam Nemet Date: Sat, 11 Sep 2004 04:26:36 +0000 (+0000) Subject: configure.ac (AC_MSG_CHECKING(what linker to use)): in_tree_ld_is_elf should be true... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a45d680ae320db9537e5b50e26c9fe4ea68e3a5;p=gcc.git configure.ac (AC_MSG_CHECKING(what linker to use)): in_tree_ld_is_elf should be true for LynxOS. * configure.ac (AC_MSG_CHECKING(what linker to use)): in_tree_ld_is_elf should be true for LynxOS. * configure: Regenerate. From-SVN: r87343 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1310c4e4d3c..3ff2a25b031 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-09-10 Adam Nemet + + * configure.ac (AC_MSG_CHECKING(what linker to use)): + in_tree_ld_is_elf should be true for LynxOS. + * configure: Regenerate. + 2004-09-10 Adam Nemet * Makefile.in (all.cross): Add srcextra. diff --git a/gcc/configure b/gcc/configure index e44ca74819f..f5d20bfd1d5 100755 --- a/gcc/configure +++ b/gcc/configure @@ -10228,7 +10228,8 @@ elif test -f $gcc_cv_ld_gld_srcdir/configure.in \ in_tree_ld=yes in_tree_ld_is_elf=no if (grep 'EMUL = .*elf' ../ld/Makefile \ - || grep 'EMUL = .*linux' ../ld/Makefile) > /dev/null; then + || grep 'EMUL = .*linux' ../ld/Makefile \ + || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then in_tree_ld_is_elf=yes fi for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.in $gcc_cv_ld_gld_srcdir/Makefile.in diff --git a/gcc/configure.ac b/gcc/configure.ac index 6dbb8021460..94887f6bced 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1865,7 +1865,8 @@ elif test -f $gcc_cv_ld_gld_srcdir/configure.in \ in_tree_ld=yes in_tree_ld_is_elf=no if (grep 'EMUL = .*elf' ../ld/Makefile \ - || grep 'EMUL = .*linux' ../ld/Makefile) > /dev/null; then + || grep 'EMUL = .*linux' ../ld/Makefile \ + || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then in_tree_ld_is_elf=yes fi for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.in $gcc_cv_ld_gld_srcdir/Makefile.in