diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-05-07 18:28:15 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-05-07 18:28:15 +0000 |
commit | f76a6fc39d1b7e9104d9a6724202f25bdb101d87 (patch) | |
tree | b20091091acb02009d3eebdfdd09c06a77859af1 /sys/arch/hppa/conf | |
parent | b6a631415b09e3155ce86a058b2b8698dafa1ef4 (diff) |
selecet pa-level and scheduling separately
Diffstat (limited to 'sys/arch/hppa/conf')
-rw-r--r-- | sys/arch/hppa/conf/Makefile.hppa | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hppa/conf/Makefile.hppa b/sys/arch/hppa/conf/Makefile.hppa index 25dd6fe413c..53e193d9e51 100644 --- a/sys/arch/hppa/conf/Makefile.hppa +++ b/sys/arch/hppa/conf/Makefile.hppa @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.hppa,v 1.18 2002/12/25 21:10:26 miod Exp $ +# $OpenBSD: Makefile.hppa,v 1.19 2003/05/07 18:28:14 mickey Exp $ # Makefile for OpenBSD # @@ -51,7 +51,7 @@ CFLAGS+= -fno-omit-frame-pointer .endif .if ${IDENT:M-DHP7000_CPU} != "" -CFLAGS+= -mpa-risc-1-0 -mschedule=700 +CFLAGS+= -mpa-risc-1-0 .elif ${IDENT:M-DHP8*_CPU} != "" CFLAGS+= -mpa-risc-2-0 .else @@ -61,6 +61,8 @@ CFLAGS+= -mpa-risc-1-1 .if ${IDENT:M-DHP*_CPU} == ${IDENT:M-HHP7100LC_CPU} # XXX they said gcc has bugs in 7100lc scheduling #CFLAGS+= -mschedule=7100LC +.else +CFLAGS+= -mschedule=700 .endif .if ${IDENT:M-DFPEMUL} != "" |