Back out part of revision 1.30:

>* Use `-S' rather than `-x' to remove debugging symbols.

because the pmax toolchain and gcc disagree about what is a "local"
symbol, and ld requires a "-x" to let elf2aout build bootable a.out kernels.
This commit is contained in:
jonathan 1996-09-25 20:35:16 +00:00
parent ffd121b446
commit 2ec085cba7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.pmax,v 1.34 1996/09/09 21:07:06 mycroft Exp $
# $NetBSD: Makefile.pmax,v 1.35 1996/09/25 20:35:16 jonathan Exp $
# Makefile for NetBSD
#
@ -95,7 +95,7 @@ SYSTEM_LD_TAIL+=; \
echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
.else
LINKFLAGS+= -S
LINKFLAGS+= -x
.endif
SYSTEM_LD_TAIL+=;\