diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-06-02 14:40:05 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-06-02 14:40:05 +0000 |
commit | 9e369d0b8b45ca6a60f92cdb0e1242998384695b (patch) | |
tree | 2bf0c10c66977f48ff3ba4d73ebe9b0ce8f09ef8 /sys/arch | |
parent | 66193f8739d2fd5f50855082592d7aced773d952 (diff) |
Add back -fno-omit-frame-pointer, which was accidentally deleted by
deraadt@ in one of the big restructuring diffs.
ok marco@, millert@, marco@
Diffstat (limited to 'sys/arch')
-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 |