Subject: Re: GAS 2.x
To: Andreas Gustafsson <gson@araneus.fi>
From: Frank van der Linden <frank@wins.uva.nl>
List: current-users
Date: 12/08/1998 16:03:51
On Tue, Dec 08, 1998 at 03:37:22PM +0200, Andreas Gustafsson wrote:
> What is the status of the integration of GAS 2.x into NetBSD?  I see
> there is a "gas.new" directory in the -current source tree, but is it
> actually functional?  If so, what do I need to do to use it?

Well, as you can see from src/gnu/usr.bin/Makefile:

.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "arm32") || \
    (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "mips") || \
    (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "vax")
SUBDIR+=        gas.new
.else
SUBDIR+=        gas
.endif

It's used on 6 architectures already as the default, in -current.

- Frank