diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-01-27 02:41:37 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-01-27 02:41:37 +0000 |
commit | 51584787e0dafac82d5ecab79c9ea596f33a6dc6 (patch) | |
tree | 33fa3fbfb0c48e948df7bd7067c6552f1476497f /configure.in | |
parent | 1bf8640cba0953e0ec177f5273601ddd95fc1a8c (diff) | |
download | gcc-51584787e0dafac82d5ecab79c9ea596f33a6dc6.tar.gz |
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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 59942e913c4..957b08fd46d 100644 --- a/configure.in +++ b/configure.in @@ -617,6 +617,17 @@ case "${target}" in *-*-chorusos) 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) noconfigdirs="$noconfigdirs ${libstdcxx_version} target-librx target-newlib target-libiberty target-libgloss ${libgcj}" ;; |