diff options
author | Adam Nemet <anemet@lnxw.com> | 2004-09-11 04:26:36 +0000 |
---|---|---|
committer | Adam Nemet <nemet@gcc.gnu.org> | 2004-09-11 04:26:36 +0000 |
commit | 8a45d680ae320db9537e5b50e26c9fe4ea68e3a5 (patch) | |
tree | d0b350d154a30acadc8610861df359299703fe59 /gcc | |
parent | ecc50d72cba9a213923974f8160675cea594cda1 (diff) | |
download | gcc-8a45d680ae320db9537e5b50e26c9fe4ea68e3a5.zip gcc-8a45d680ae320db9537e5b50e26c9fe4ea68e3a5.tar.gz gcc-8a45d680ae320db9537e5b50e26c9fe4ea68e3a5.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1310c4e..3ff2a25 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-09-10 Adam Nemet <anemet@lnxw.com> + + * 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 <anemet@lnxw.com> * Makefile.in (all.cross): Add srcextra. diff --git a/gcc/configure b/gcc/configure index e44ca74..f5d20bf 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 6dbb802..94887f6 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 |