From 2ec085cba7ad155a54436c0ddbd2e5f2b0c27058 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 25 Sep 1996 20:35:16 +0000 Subject: [PATCH] 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. --- sys/arch/pmax/conf/Makefile.pmax | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/pmax/conf/Makefile.pmax b/sys/arch/pmax/conf/Makefile.pmax index 25890b109f53..5eb9e3060478 100644 --- a/sys/arch/pmax/conf/Makefile.pmax +++ b/sys/arch/pmax/conf/Makefile.pmax @@ -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+=;\