old-cross-binutils/gdb/munch

28 lines
737 B
Text
Raw Normal View History

1991-03-28 16:28:29 +00:00
#!/bin/sh
# create an initialization procedure from a list of .o files
echo '/* Do not modify this file. It is created automatically by "munch". */'
echo 'void initialize_all_files () {'
1991-08-31 00:43:36 +00:00
NMOPT=""
case $1 in
-*) NMOPT=$1; shift ;;
esac
1991-03-28 16:28:29 +00:00
# make it easy to use a different nm, e.g. for cross-developing
1991-08-31 00:43:36 +00:00
MUNCH_NM="nm $NMOPT"
1991-03-28 16:28:29 +00:00
if test "`$MUNCH_NM main.o | egrep 'T _?main$'`" = "" ; then
# System V style nm
shift;
$MUNCH_NM $* | egrep '^(.*[^a-zA-Z_]_|_)_?initialize_.*\.text' | \
sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\)[^a-zA-Z0-9_].*$/ {extern void \1 (); \1 ();}/'
else
# BSD style nm
$MUNCH_NM -p $* | egrep 'T *_?_initialize_' | \
sed -e 's/^.*T *_*\(.*\)/ {extern void _\1 (); _\1 ();}/'
fi
echo '}'