1991-03-28 17:28:29 +01: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 02:43:36 +02:00
|
|
|
NMOPT=""
|
|
|
|
case $1 in
|
1991-09-13 03:10:22 +02:00
|
|
|
MUNCH_NM=*)
|
|
|
|
MUNCH_NM=`echo $1 | sed 's/MUNCH_NM=//'`; shift ;;
|
|
|
|
-*)
|
|
|
|
NMOPT=$1; shift ;;
|
1991-08-31 02:43:36 +02:00
|
|
|
esac
|
|
|
|
|
1991-03-28 17:28:29 +01:00
|
|
|
# make it easy to use a different nm, e.g. for cross-developing
|
1991-08-31 02:43:36 +02:00
|
|
|
|
1991-09-13 03:10:22 +02:00
|
|
|
MUNCH_NM="${MUNCH_NM-nm} $NMOPT"
|
1991-10-24 09:54:58 +01:00
|
|
|
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 | \
|
1992-05-12 04:35:44 +02:00
|
|
|
sed -e \
|
|
|
|
's/^.*\(_initialize_[a-zA-Z0-9_]*\).*$/ {extern void \1 (); \1 ();}/'\
|
|
|
|
| sort -u
|
1992-02-29 07:03:43 +01:00
|
|
|
elif test "`$MUNCH_NM main.o | egrep '[TD] _?main$'`" = "" ; then
|
1991-03-28 17:28:29 +01:00
|
|
|
# System V style nm
|
|
|
|
shift;
|
1992-04-03 22:25:57 +02:00
|
|
|
$MUNCH_NM $* | egrep '_initialize_.*' | egrep '\.text'|\
|
1992-05-12 04:35:44 +02:00
|
|
|
sed -e \
|
|
|
|
's/^.*\(_initialize_[a-zA-Z0-9_]*\).*/ {extern void \1 (); \1 ();}/' \
|
|
|
|
| sort -u
|
1991-03-28 17:28:29 +01:00
|
|
|
else
|
|
|
|
# BSD style nm
|
1991-09-13 03:10:22 +02:00
|
|
|
# We now accept either text or data symbols, since the RT/PC uses data.
|
1992-02-29 07:03:43 +01:00
|
|
|
$MUNCH_NM -p $* | egrep '[TD] *_?[_.]initialize_' | \
|
1992-05-12 04:35:44 +02:00
|
|
|
sed -e 's/^.*\(initialize_.*\)/ {extern void _\1 (); _\1 ();}/' \
|
|
|
|
| sort -u
|
1991-03-28 17:28:29 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo '}'
|