* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
This commit is contained in:
parent
950a7601d1
commit
fcaf83687b
|
@ -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-07 Svein E. Seldal <Svein.Seldal@solidas.com>
|
2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
|
||||||
|
|
||||||
* configure.in: Add tic4x target.
|
* configure.in: Add tic4x target.
|
||||||
|
|
|
@ -422,6 +422,13 @@ case "${target}" in
|
||||||
noconfigdirs="$noconfigdirs target-newlib target-libgloss"
|
noconfigdirs="$noconfigdirs target-newlib target-libgloss"
|
||||||
;;
|
;;
|
||||||
i[3456]86-*-linux*)
|
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.
|
# This section makes it possible to build newlib natively on linux.
|
||||||
# If we are using a cross compiler then don't configure newlib.
|
# If we are using a cross compiler then don't configure newlib.
|
||||||
if test x${is_cross_compiler} != xno ; then
|
if test x${is_cross_compiler} != xno ; then
|
||||||
|
|
Loading…
Reference in New Issue