diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2002-10-24 23:25:07 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2002-10-24 23:25:07 +0000 |
commit | d0af82b0ce4a0f83f844b927e83853acf904eab4 (patch) | |
tree | 2877552bbacf2937283255ab52e2f4ffd79aca81 | |
parent | a7475ab1fda69ace56d43f00b6596d89b171ac47 (diff) | |
download | gcc-d0af82b0ce4a0f83f844b927e83853acf904eab4.zip gcc-d0af82b0ce4a0f83f844b927e83853acf904eab4.tar.gz gcc-d0af82b0ce4a0f83f844b927e83853acf904eab4.tar.bz2 |
configure.in (i[3456]86-*-linux*): Add check to disable ${libgcj} for glibc1.
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
From-SVN: r58511
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2002-10-24 Hans-Peter Nilsson <hp@bitrange.com> + + * configure.in (i[3456]86-*-linux*): Add check to disable + ${libgcj} for glibc1. + 2002-10-24 Denis Chertykov <denisc@overta.ru> * MAINTAINERS: Add myself as ip2k port maintainer. diff --git a/configure.in b/configure.in index 87dd2c6..6b71494 100644 --- a/configure.in +++ b/configure.in @@ -422,6 +422,13 @@ case "${target}" in noconfigdirs="$noconfigdirs target-newlib target-libgloss" ;; i[3456]86-*-linux*) + # The GCC port for glibc1 has no MD_FALLBACK_FRAME_STATE_FOR, so let's + # not build java stuff by default. + case "${target}" in + *-*-*libc1*) + noconfigdirs="$noconfigdirs ${libgcj}";; + esac + # This section makes it possible to build newlib natively on linux. # If we are using a cross compiler then don't configure newlib. if test x${is_cross_compiler} != xno ; then |