Commit d0af82b0 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

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
parent a7475ab1
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment