diff options
| author | nemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-11 04:26:36 +0000 |
|---|---|---|
| committer | nemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-11 04:26:36 +0000 |
| commit | 092f763e36d37879a32bbc4e2c32a7a0c408d3bb (patch) | |
| tree | d0b350d154a30acadc8610861df359299703fe59 | |
| parent | 689b9c21ac0ddf9abb6ea85c49342445a092e7ad (diff) | |
| download | ppe42-gcc-092f763e36d37879a32bbc4e2c32a7a0c408d3bb.tar.gz ppe42-gcc-092f763e36d37879a32bbc4e2c32a7a0c408d3bb.zip | |
* configure.ac (AC_MSG_CHECKING(what linker to use)):
in_tree_ld_is_elf should be true for LynxOS.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87343 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 1310c4e4d3c..3ff2a25b031 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 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 |

