diff options
Diffstat (limited to 'sys/arch/alpha/stand/bootxx/Makefile')
-rw-r--r-- | sys/arch/alpha/stand/bootxx/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/stand/bootxx/Makefile b/sys/arch/alpha/stand/bootxx/Makefile index b57041cd64e..b3118c1ffbf 100644 --- a/sys/arch/alpha/stand/bootxx/Makefile +++ b/sys/arch/alpha/stand/bootxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2015/10/22 18:54:41 miod Exp $ +# $OpenBSD: Makefile,v 1.16 2016/07/30 03:25:48 guenther Exp $ # $NetBSD: Makefile,v 1.12 1997/04/17 07:27:49 thorpej Exp $ S= ${.CURDIR}/../../../.. @@ -40,5 +40,6 @@ lint: .include <bsd.prog.mk> ${PROG}.sym: ${OBJS} - ${LD} -nopie -Ttext ${BOOT_RELOC} -N -e start -o ${PROG}.sym ${OBJS} + ${LD} -nopie -znorelro -Ttext ${BOOT_RELOC} -N -e start \ + -o ${PROG}.sym ${OBJS} size ${PROG}.sym |