diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-11-13 14:31:53 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-11-13 14:31:53 +0000 |
commit | 661e8fbc2f4b11788fc42fa5a38571b6fd93fc00 (patch) | |
tree | 0df2eb3234baf8b5608206ffee5b1174dafafc1a /sys/arch/macppc/conf/Makefile.macppc | |
parent | bb78d2489d1784bc41de0246d10a10951c377a71 (diff) |
Add AltiVec support to powerpc/macppc. This is not currently enabled because
the 'as' in openbsd source tree does not yet support altivec instructions.
The pieces to enable it have been put in macppc/conf/GENERIC and
macppc/conf/Makefile.macppc in comments.
Once 'as' is updated the kernel option should be removed.
Diffstat (limited to 'sys/arch/macppc/conf/Makefile.macppc')
-rw-r--r-- | sys/arch/macppc/conf/Makefile.macppc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/macppc/conf/Makefile.macppc b/sys/arch/macppc/conf/Makefile.macppc index 8035d4672cd..002ff9ffd4e 100644 --- a/sys/arch/macppc/conf/Makefile.macppc +++ b/sys/arch/macppc/conf/Makefile.macppc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.macppc,v 1.1 2001/09/01 15:59:31 drahn Exp $ +# $OpenBSD: Makefile.macppc,v 1.2 2001/11/13 14:31:52 drahn Exp $ # # Makefile for OpenBSD PowerPC # @@ -45,6 +45,7 @@ CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL \ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float +#CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float -Wa,-maltivec AFLAGS= -D_LOCORE LINKFLAGS= -N -Ttext 100074 -e start STRIPFLAGS= -d |