From: Julian Seward Date: Sun, 15 Dec 2002 02:05:02 +0000 (+0000) Subject: Also diff the U (undefined) symbols. X-Git-Tag: svn/VALGRIND_1_9_4~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e2c182834a2d04fffc5084733a5ad8476b3cb4e;p=thirdparty%2Fvalgrind.git Also diff the U (undefined) symbols. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1376 --- diff --git a/coregrind/dosyms b/coregrind/dosyms index 4a46f01e6b..b7ba8503ec 100755 --- a/coregrind/dosyms +++ b/coregrind/dosyms @@ -6,10 +6,12 @@ nm /lib/libpthread.so.0 | grep " T " | cut -c 10- > orig-T nm /lib/libpthread.so.0 | grep " D " | cut -c 10- > orig-D nm /lib/libpthread.so.0 | grep " W " | cut -c 10- > orig-W +nm /lib/libpthread.so.0 | grep " U " | cut -c 10- > orig-U nm ./libpthread.so | grep " T " | cut -c 10- > mine-T nm ./libpthread.so | grep " D " | cut -c 10- > mine-D nm ./libpthread.so | grep " W " | cut -c 10- > mine-W +nm ./libpthread.so | grep " U " | cut -c 10- > mine-U echo ========================== TEXT orig vs mine ========================= sdiff -w 80 orig-T mine-T @@ -22,3 +24,8 @@ echo echo ========================== DATA orig vs mine ========================= sdiff -w 80 orig-D mine-D echo + +echo ========================== UNDF orig vs mine ========================= +sdiff -w 80 orig-U mine-U +echo +