diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-05-30 19:53:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-05-30 19:53:03 +0000 |
commit | ee8cc5a387b2b975f8d2ebd7d500640ba40558c7 (patch) | |
tree | d8b62090304741500f507599934e239ebd78f576 /lib/libarch/alpha | |
parent | 76064b69875c8039cc4e28bf676c38bc61029ed1 (diff) |
Build with -mbwx rather than -Wa,-mev56 so that upcoming changes to the compiler
will output proper .arch statements in its output.
No functional change.
Diffstat (limited to 'lib/libarch/alpha')
-rw-r--r-- | lib/libarch/alpha/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libarch/alpha/Makefile b/lib/libarch/alpha/Makefile index 18eff33c26c..c2a4d2bed4e 100644 --- a/lib/libarch/alpha/Makefile +++ b/lib/libarch/alpha/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/lib/libio/Makefile,v 1.2 1999/08/28 00:04:42 peter Exp $ -# $OpenBSD: Makefile,v 1.7 2002/07/12 22:30:25 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 2015/05/30 19:53:02 miod Exp $ MAN= inb.2 MLINKS+= inb.2 dense_base.2 \ @@ -15,7 +15,7 @@ MANSUBDIR=alpha .if ${MACHINE} == "alpha" NOPIC= SRCS= io.c bwx.c -CFLAGS+= -Wall -Wno-uninitialized -Wa,-mev56 +CFLAGS+= -Wall -Wno-uninitialized -mbwx .include <bsd.lib.mk> .else NOPROG= |