diff options
author | Stu Grossman <grossman@cygnus> | 1992-06-19 22:43:49 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-06-19 22:43:49 +0000 |
commit | 7da1e27dd4814e6e718404f294d3ef63e15054e2 (patch) | |
tree | 88de18c03a71c4f3fca192c8d9d597842c686ff6 /gdb/munch | |
parent | 9aa448333dc03c53f4ed8826251f813123705217 (diff) | |
download | gdb-7da1e27dd4814e6e718404f294d3ef63e15054e2.zip gdb-7da1e27dd4814e6e718404f294d3ef63e15054e2.tar.gz gdb-7da1e27dd4814e6e718404f294d3ef63e15054e2.tar.bz2 |
* configure.in, dbxread.c, hppa-coredep.c, hppa-pinsn.c,
hppabsd-core.c, hppabsd-tdep.c, hppabsd-xdep.c, hppahpux-tdep.c,
hppahpux-xdep.c, munch, partial-stab.h, tm-hppabsd.h,
tm-hppahpux.h, xm-hppabsd.h, xm-hppahpux.h: HPPA merge.
Diffstat (limited to 'gdb/munch')
-rwxr-xr-x | gdb/munch | 21 |
1 files changed, 15 insertions, 6 deletions
@@ -23,12 +23,21 @@ if test "`$MUNCH_NM main.o | egrep main | egrep FUNC | egrep GLOB`" != "" ; then '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 ();}/' \ - | sort -u + if test "`$MUNCH_NM main.o | head -6 | egrep 'Subspace$'`" != "" ; then + # HP PA RISC compilers don't prepend underscores + shift; + $MUNCH_NM $* | egrep '_initialize_.*' | \ + sed -e \ + 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*/ {extern void \1 (); \1 ();}/' \ + | sort -u + else + # System V style nm + shift; + $MUNCH_NM $* | egrep '_initialize_.*' | egrep '\.text'|\ + sed -e \ + 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*/ {extern void \1 (); \1 ();}/' \ + | sort -u + fi else # BSD style nm # We now accept either text or data symbols, since the RT/PC uses data. |