diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2002-10-24 23:31:47 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2002-10-24 23:31:47 +0000 |
commit | 28f462982525bc976f150f028ae08b1339cc08b3 (patch) | |
tree | 7a1bf6fa647543cc29ed970b12cf549a3be02119 /configure.in | |
parent | fe39c6533df600944f62d3da7877ad5e4f6d8dbe (diff) | |
download | gdb-28f462982525bc976f150f028ae08b1339cc08b3.zip gdb-28f462982525bc976f150f028ae08b1339cc08b3.tar.gz gdb-28f462982525bc976f150f028ae08b1339cc08b3.tar.bz2 |
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
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 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 |