diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-10-06 14:52:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-10-06 14:52:18 +0000 |
commit | bfefa549a9b3d758ddafecba0f5d06e957fd7ded (patch) | |
tree | 1f571b3ca16fdff17955d304361d7f6f76e3040e /sys/arch | |
parent | a901e558c50c9ff294cae7a61346c8d1c933a71e (diff) |
Pass -finhibit-size-directive to the compiler, so that binutils 2.15
do not create an .eh_frame section in object files.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index 661b5e2a563..78a59dff6ec 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.32 2003/11/21 17:53:19 espie Exp $ +# $OpenBSD: Makefile.alpha,v 1.33 2004/10/06 14:52:17 miod Exp $ # $NetBSD: Makefile.alpha,v 1.27 1996/12/01 06:12:25 jonathan Exp $ # Makefile for OpenBSD @@ -34,7 +34,8 @@ CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dalpha CDIAGFLAGS?= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main -CMACHFLAGS= -mno-fp-regs -fno-builtin-printf -fno-builtin-log +CMACHFLAGS= -mno-fp-regs -fno-builtin-printf -fno-builtin-log \ + -finhibit-size-directive .if ${IDENT:M-DNO_PROPOLICE} CMACHFLAGS+= -fno-stack-protector .endif |