diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-05-30 02:53:32 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-05-30 02:53:32 +0000 |
commit | dcf7f0ddac2a6ad699656099f93d319fd7f964b6 (patch) | |
tree | 5c8166e93e0970f1930717835f910cc665fe2da9 | |
parent | 5549d65dfb54edf3736487328e88ec50cb3f4e15 (diff) | |
download | gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.zip gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.tar.gz gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.tar.bz2 |
configure.in (vax-*-netbsd*): Don't build gas for this platform.
* configure.in (vax-*-netbsd*): Don't build gas for this
platform.
From-SVN: r54040
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2002-05-29 Jason Thorpe <thorpej@wasabisystems.com> + + * configure.in (vax-*-netbsd*): Don't build gas for this + platform. + 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl> * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx diff --git a/configure.in b/configure.in index b21918e..1c63934 100644 --- a/configure.in +++ b/configure.in @@ -633,6 +633,10 @@ case "${target}" in # Skip some stuff that's unsupported on some NetBSD configurations. case "${target}" in i*86-*-netbsdelf*) ;; + vax-*-netbsd*) + # gas is not yet supported on vax-netbsd. + noconfigdirs="gas $noconfigdirs ${libgcj}" + ;; *) noconfigdirs="$noconfigdirs ${libgcj}" ;; |