3 # create an initialization procedure from a list of .o files
5 echo '/* Do not modify this file. It is created automatically by "munch". */'
6 echo 'void initialize_all_files () {'
11 MUNCH_NM=`echo $1 | sed 's/MUNCH_NM=//'`; shift ;;
16 # make it easy to use a different nm, e.g. for cross-developing
18 MUNCH_NM="${MUNCH_NM-nm} $NMOPT"
19 if test "`$MUNCH_NM main.o | egrep main | egrep FUNC | egrep GLOB`" != "" ; then
20 # System V Release 4 style nm
21 $MUNCH_NM $* | egrep '|__?initialize_' | egrep FUNC | \
22 sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\).*$/ {extern void \1 (); \1 ();}/'
23 elif test "`$MUNCH_NM main.o | egrep 'T _?main$'`" = "" ; then
26 $MUNCH_NM $* | egrep '^(.*[^a-zA-Z_]_|_)_?initialize_.*\.text' | \
27 sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\)[^a-zA-Z0-9_].*$/ {extern void \1 (); \1 ();}/'
30 # We now accept either text or data symbols, since the RT/PC uses data.
31 $MUNCH_NM -p $* | egrep '[TD] *_?_initialize_' | \
32 sed -e 's/^.*[TD] *_*\(.*\)/ {extern void _\1 (); _\1 ();}/'