aboutsummaryrefslogtreecommitdiff
path: root/gdb/munch
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1992-05-12 02:35:44 +0000
committerJohn Gilmore <gnu@cygnus>1992-05-12 02:35:44 +0000
commit2ce124dfd980cd9131dd0c908429470968c31c42 (patch)
tree18209bc8067171e31fe3c142154eec3c0153bf63 /gdb/munch
parent35095455425577d8e748835c6b7bda5eeff9fc45 (diff)
downloadgdb-2ce124dfd980cd9131dd0c908429470968c31c42.zip
gdb-2ce124dfd980cd9131dd0c908429470968c31c42.tar.gz
gdb-2ce124dfd980cd9131dd0c908429470968c31c42.tar.bz2
* README: Add pointer to internals doc, and describe reading
info files. * utils.c (print_sys_errmsg): Use stderr. Reported by Pierre Willard. * symtab.c (output_source_filename): Remove old glop for wrapping lines, use wrap_here. Reported by Pierre Willard (pierre@la.tce.com). * Makefile.in: version.c should depend on Makefile, not Makefile.in. * munch: Add sort -u to avoid duplications. * symtab.c (lookup_symbol): Improve Stu's fix of 22 April. Improved fix by hahn@sunshine.labs.tek.com (Doug Hahn).
Diffstat (limited to 'gdb/munch')
-rwxr-xr-xgdb/munch11
1 files changed, 8 insertions, 3 deletions
diff --git a/gdb/munch b/gdb/munch
index 75c6521..6d8a656 100755
--- a/gdb/munch
+++ b/gdb/munch
@@ -19,17 +19,22 @@ MUNCH_NM="${MUNCH_NM-nm} $NMOPT"
if test "`$MUNCH_NM main.o | egrep main | egrep FUNC | egrep GLOB`" != "" ; then
# System V Release 4 style nm
$MUNCH_NM $* | egrep '|__?initialize_' | egrep FUNC | \
- sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*$/ {extern void \1 (); \1 ();}/'
+ sed -e \
+ 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*$/ {extern void \1 (); \1 ();}/'\
+ | sort -u
elif test "`$MUNCH_NM main.o | egrep '[TD] _?main$'`" = "" ; then
# System V style nm
shift;
$MUNCH_NM $* | egrep '_initialize_.*' | egrep '\.text'|\
- sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*/ {extern void \1 (); \1 ();}/'
+ sed -e \
+ 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*/ {extern void \1 (); \1 ();}/' \
+ | sort -u
else
# BSD style nm
# We now accept either text or data symbols, since the RT/PC uses data.
$MUNCH_NM -p $* | egrep '[TD] *_?[_.]initialize_' | \
- sed -e 's/^.*\(initialize_.*\)/ {extern void _\1 (); _\1 ();}/'
+ sed -e 's/^.*\(initialize_.*\)/ {extern void _\1 (); _\1 ();}/' \
+ | sort -u
fi
echo '}'