diff options
Diffstat (limited to 'sys/arch/armv7/conf')
-rw-r--r-- | sys/arch/armv7/conf/Makefile.armv7 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/armv7/conf/Makefile.armv7 b/sys/arch/armv7/conf/Makefile.armv7 index 504d8227a02..a8d44d7f769 100644 --- a/sys/arch/armv7/conf/Makefile.armv7 +++ b/sys/arch/armv7/conf/Makefile.armv7 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.armv7,v 1.12 2015/06/08 06:33:16 jsg Exp $ +# $OpenBSD: Makefile.armv7,v 1.13 2016/04/29 12:44:52 mpi Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -82,14 +82,13 @@ SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= .if ${DEBUG} == "-g" -LINKFLAGS+= -X -STRIPFLAGS= -g -x +STRIPFLAGS= -S SYSTEM_LD_TAIL+=; \ echo mv $@ $@.gdb; rm -f $@.gdb; mv $@ $@.gdb; \ echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \ ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb .else -LINKFLAGS+= -x +LINKFLAGS+= -S .endif %LOAD |