diff options
author | 2010-06-02 14:40:04 +0000 | |
---|---|---|
committer | 2010-06-02 14:40:04 +0000 | |
commit | d8e539c3bdee5076bece3c13c4a355433c2ded2e (patch) | |
tree | 1bbb3a619cc79f91876e4f08680d3c47a1ad0076 | |
parent | ss has no value, its readme has even less value. it discusses development (diff) | |
download | wireguard-openbsd-d8e539c3bdee5076bece3c13c4a355433c2ded2e.tar.xz wireguard-openbsd-d8e539c3bdee5076bece3c13c4a355433c2ded2e.zip |
Add back -fno-omit-frame-pointer, which was accidentally deleted by
deraadt@ in one of the big restructuring diffs.
ok marco@, millert@, marco@
-rw-r--r-- | sys/arch/amd64/conf/Makefile.amd64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/conf/Makefile.amd64 b/sys/arch/amd64/conf/Makefile.amd64 index a13e3c42207..940ea90a609 100644 --- a/sys/arch/amd64/conf/Makefile.amd64 +++ b/sys/arch/amd64/conf/Makefile.amd64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.amd64,v 1.43 2010/06/01 23:49:22 deraadt Exp $ +# $OpenBSD: Makefile.amd64,v 1.44 2010/06/02 14:40:04 kettenis Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -29,7 +29,7 @@ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wstack-larger-than-2047 CMACHFLAGS= -mcmodel=kernel -mno-red-zone -mno-sse2 -mno-sse -mno-3dnow \ - -mno-mmx -msoft-float + -mno-mmx -msoft-float -fno-omit-frame-pointer CMACHFLAGS+= -fno-builtin-printf -fno-builtin-snprintf \ -fno-builtin-vsnprintf -fno-builtin-log \ -fno-builtin-log2 -fno-builtin-malloc |