diff options
author | 1998-10-04 20:01:45 +0000 | |
---|---|---|
committer | 1998-10-04 20:01:45 +0000 | |
commit | b2fe16e8403a6c27775277f798b213174740228c (patch) | |
tree | 1f0f9289cf619cb96b81f8e44c270873e6bfedb7 | |
parent | For a.out, try mmap first (like we used to do) and only malloc() if that fails (for ksyms). Also clean up some mmap/malloc leaks. (diff) | |
download | wireguard-openbsd-b2fe16e8403a6c27775277f798b213174740228c.tar.xz wireguard-openbsd-b2fe16e8403a6c27775277f798b213174740228c.zip |
pmax kernels have problems with -O2 so use -O
-rw-r--r-- | sys/arch/pmax/conf/Makefile.pmax | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/conf/Makefile.pmax b/sys/arch/pmax/conf/Makefile.pmax index 82c02665ffc..c3c016f1f46 100644 --- a/sys/arch/pmax/conf/Makefile.pmax +++ b/sys/arch/pmax/conf/Makefile.pmax @@ -47,7 +47,7 @@ CDIAGFLAGS= -Werror -Wno-main CMACHFLAGS= -mno-abicalls -mcpu=r3000 -CFLAGS= ${DEBUG} -O2 ${CDIAGFLAGS} ${CMACHFLAGS} ${COPTS} +CFLAGS= ${DEBUG} -O ${CDIAGFLAGS} ${CMACHFLAGS} ${COPTS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE LINKFLAGS= -N -Ttext 80030000 -e start STRIPFLAGS= -d |