diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-24 23:25:07 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-24 23:25:07 +0000 |
commit | 4ea2c3bf17c236c006ba5827d820b2774a87b86b (patch) | |
tree | 2877552bbacf2937283255ab52e2f4ffd79aca81 /configure.in | |
parent | 283bb5ac5efc9bff2d958169176257ca97beb645 (diff) | |
download | gcc-4ea2c3bf17c236c006ba5827d820b2774a87b86b.tar.gz |
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58511 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 87dd2c6dc41..6b714947a66 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 |