diff options
author | 1996-02-18 11:21:19 +0000 | |
---|---|---|
committer | 1996-02-18 11:21:19 +0000 | |
commit | 78c8ecf7d6a61b63079dffcd0f0d17ebd89331e7 (patch) | |
tree | 6668206da9d1d3b8942fab87b3e415fce863f65d | |
parent | Use MAXPHYS for MAXBSIZE for all platforms but i386; use 32K on i386 until (diff) | |
download | wireguard-openbsd-78c8ecf7d6a61b63079dffcd0f0d17ebd89331e7.tar.xz wireguard-openbsd-78c8ecf7d6a61b63079dffcd0f0d17ebd89331e7.zip |
Compile with -fno-strength-reduce for now
-rw-r--r-- | sys/arch/i386/conf/Makefile.i386 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/i386/conf/Makefile.i386 b/sys/arch/i386/conf/Makefile.i386 index 36c2caca8b9..308c00c4bfc 100644 --- a/sys/arch/i386/conf/Makefile.i386 +++ b/sys/arch/i386/conf/Makefile.i386 @@ -32,7 +32,7 @@ I386= ../.. INCLUDES= -I. -I$S/arch -I$S -I$S/sys COPTS= ${INCLUDES} ${IDENT} -D_KERNEL -Di386 -CFLAGS= -O6 -Werror ${COPTS} +CFLAGS= -O6 -fno-strength-reduce -Werror ${COPTS} LOAD_ADDRESS= F8100000 ### find out what to use for libkern |