mirror of git://gcc.gnu.org/git/gcc.git
configure.in (*-*-netbsd*): New.
* configure.in (*-*-netbsd*): New. Skip target-newlib, target-libiberty, and target-libgloss. Skip Java-related libraries if not supported for NetBSD on target CPU. From-SVN: r49258
This commit is contained in:
parent
1bf8640cba
commit
51584787e0
|
|
@ -1,3 +1,9 @@
|
||||||
|
2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
|
||||||
|
|
||||||
|
* configure.in (*-*-netbsd*): New. Skip target-newlib,
|
||||||
|
target-libiberty, and target-libgloss. Skip Java-related
|
||||||
|
libraries if not supported for NetBSD on target CPU.
|
||||||
|
|
||||||
2002-01-25 Douglas B Rupp <rupp@gnat.com>
|
2002-01-25 Douglas B Rupp <rupp@gnat.com>
|
||||||
|
|
||||||
* install-sh: Use _inst.$$_ for temp file name.
|
* install-sh: Use _inst.$$_ for temp file name.
|
||||||
|
|
|
||||||
11
configure.in
11
configure.in
|
|
@ -617,6 +617,17 @@ case "${target}" in
|
||||||
*-*-chorusos)
|
*-*-chorusos)
|
||||||
noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
|
noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
|
||||||
;;
|
;;
|
||||||
|
*-*-netbsd*)
|
||||||
|
# Skip some stuff on all NetBSD configurations.
|
||||||
|
skipdirs="$skipdirs target-newlib target-libiberty target-libgloss"
|
||||||
|
|
||||||
|
# Skip some stuff that's unsupported on some NetBSD configurations.
|
||||||
|
case "${target}" in
|
||||||
|
*)
|
||||||
|
noconfigdirs="$noconfigdirs ${libgcj}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
*-*-netware)
|
*-*-netware)
|
||||||
noconfigdirs="$noconfigdirs ${libstdcxx_version} target-librx target-newlib target-libiberty target-libgloss ${libgcj}"
|
noconfigdirs="$noconfigdirs ${libstdcxx_version} target-librx target-newlib target-libiberty target-libgloss ${libgcj}"
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue