From: Ian Lance Taylor Date: Mon, 21 Feb 1994 02:57:01 +0000 (+0000) Subject: * nlmconv.c: Include libiberty.h. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d1a7f14f540bffcc5b997064130aa0b67fe77d98;p=deliverable%2Fbinutils-gdb.git * nlmconv.c: Include libiberty.h. start-sanitize-powerpc-netware Support for PowerPC NetWare. * nlmconv.c (main): For PowerPC NetWare, automatically define the special symbols __toc_start. (select_output_format): Handle bfd_arch_powerpc. (mangle_relocs): Likewise. (powerpc_mangle_relocs): New function. end-sanitize-powerpc-netware --- diff --git a/binutils/.Sanitize b/binutils/.Sanitize index cc24532e31..eac2b1e24c 100644 --- a/binutils/.Sanitize +++ b/binutils/.Sanitize @@ -80,3 +80,24 @@ version.c Things-to-lose: Do-last: + +ppcfiles="ChangeLog nlmconv.c" +if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then + if [ -n "${verbose}" ] ; then + echo Keeping PowerPC NetWare stuff in $ppcfiles. + fi +else + if [ -n "${verbose}" ]; then + echo -n Removing PowerPC NetWare in `pwd`: + fi + for f in $ppcfiles ; do + if [ -n "${verbose}" ] ; then + echo -n " " $f + fi + sed '/start\-sanitize\-powerpc\-netware/,/end\-sanitize\-powerpc\-netware/d' < $f > new + if [ -n "${safe}" ] ; then + mv $f .Recover + fi + mv new $f + done +fi