diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-06-05 21:25:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-06-05 21:25:53 +0000 |
commit | 84db602fe3898f49b62e09e496360e1c82f47799 (patch) | |
tree | a14be8d0f801d3cc3cc1b1c163417fd3f53130f9 /extra/scripts | |
parent | 55a99c3281d199e140774103e0d35f1353a67359 (diff) |
Patch from Peter S. Mazinger to make the get-needed-libgcc-objects
script work with newer binutils versions.
Diffstat (limited to 'extra/scripts')
-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 6aac14b4c..f12aae153 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 | 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 |