gdb-3.5
[deliverable/binutils-gdb.git] / gdb / munch
1 #! /bin/sh
2
3 # create an initialization procedure from a list of .o files
4
5 echo '/* Do not modify this file. It is created automatically by "munch". */'
6 echo 'void initialize_all_files () {'
7
8 if test "$1" = "-DSYSV" ; then
9 shift;
10 nm $* | egrep '^(.*[^a-zA-Z_]_|_)initialize_' | \
11 sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\)[^a-zA-Z0-9_].*$/ \1 ();/'
12 else
13 nm -p $* | egrep 'T *__initialize_' | \
14 sed -e 's/^.*T *_*\(.*\)/ _\1 ();/'
15 fi
16
17 echo '}'
This page took 0.034956 seconds and 4 git commands to generate.