* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Set vma to 0

for .DVP.overlay.*.
This commit is contained in:
Doug Evans 1998-06-05 22:58:06 +00:00
parent aaaf948f2d
commit bf86ea82b3
2 changed files with 40 additions and 0 deletions

View File

@ -1,3 +1,10 @@
start-sanitize-sky
Fri Jun 5 15:55:26 1998 Doug Evans <devans@canuck.cygnus.com>
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Set vma to 0
for .DVP.overlay.*.
end-sanitize-sky
Fri Jun 5 18:19:59 1998 Ian Lance Taylor <ian@cygnus.com>
* emultempl/aix.em (gld${EMULATION_NAME}_before_parse): Set

View File

@ -48,3 +48,36 @@ Things-to-lose:
Do-last:
sky_files="elf32.em"
if ( echo $* | grep keep\-sky > /dev/null ) ; then
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping sky stuff in $i
fi
fi
done
else
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"sky\" from $i...
fi
cp $i new
sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done