diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-08-18 23:14:09 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-08-18 23:14:09 +0000 |
commit | fd47fd4039cadf42620bbfce43c3a0338e23ee26 (patch) | |
tree | 3e4e84d1f9b29ab64430461c7ea5a9cfd506010d | |
parent | 12d405f57b5db065f8d20264506697be466efb2b (diff) |
Work around a bug in nm from binutils-2.14.90.0.5.
-rwxr-xr-x | extra/scripts/get-needed-libgcc-objects.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/scripts/get-needed-libgcc-objects.sh b/extra/scripts/get-needed-libgcc-objects.sh index f12aae153..3743b0c0c 100755 --- a/extra/scripts/get-needed-libgcc-objects.sh +++ b/extra/scripts/get-needed-libgcc-objects.sh @@ -20,7 +20,7 @@ echo " partial linking..." rm -f libc.ldr $LD $LDFLAGS -r -o libc.ldr $CRTOBJS --whole-archive ../libc.a -if $NM --undefined-only libc.ldr 2>&1 | grep -v "main$" | grep -v "_GLOBAL_OFFSET_TABLE_$" | grep -v "_gp_disp" | grep -v "^etext$" | grep -v "^__gmon_start__$" > sym.need ; then +if $NM --undefined-only libc.ldr 2>&1 | sed -s 's/ *$//' | sed -e 's/^.*U *//' | grep -v "main$" | grep -v "_GLOBAL_OFFSET_TABLE_$" | grep -v "_gp_disp" | grep -v "^etext$" | grep -v "^__gmon_start__$" > sym.need ; then EXIT_WITH_ERROR=0 rm -f obj.need touch obj.need |