Module Name:    src
Committed By:   joerg
Date:           Mon Jul  1 12:48:03 UTC 2013

Modified Files:
        src/sys/arch/i386/stand: Makefile.inc

Log Message:
Explicitly disable unwind table generation.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/i386/stand/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/stand/Makefile.inc
diff -u src/sys/arch/i386/stand/Makefile.inc:1.10 src/sys/arch/i386/stand/Makefile.inc:1.11
--- src/sys/arch/i386/stand/Makefile.inc:1.10	Wed Apr  4 10:54:44 2012
+++ src/sys/arch/i386/stand/Makefile.inc	Mon Jul  1 12:48:03 2013
@@ -1,11 +1,12 @@
-#	$NetBSD: Makefile.inc,v 1.10 2012/04/04 10:54:44 joerg Exp $
+#	$NetBSD: Makefile.inc,v 1.11 2013/07/01 12:48:03 joerg Exp $
 
 .include <bsd.own.mk>
 
 BINDIR=	/usr/mdec
 
-OPT_SIZE.gcc=	-Os -ffreestanding -fomit-frame-pointer
+OPT_SIZE.gcc=	-Os -ffreestanding -fomit-frame-pointer -fno-unwind-tables
 OPT_SIZE.clang=	-Oz -ffreestanding -fomit-frame-pointer -DNDEBUG \
 		-fno-stack-protector -mno-sse \
 		-mstack-alignment=4 \
-		-mllvm -inline-threshold=3 -mllvm -enable-load-pre=false
+		-mllvm -inline-threshold=3 -mllvm -enable-load-pre=false \
+		-fno-unwind-tables

Reply via email to