Welcome cvs to the big time.
[deliverable/binutils-gdb.git] / gdb / munch
CommitLineData
dd3b648e
RP
1#!/bin/sh
2
3# create an initialization procedure from a list of .o files
4
5echo '/* Do not modify this file. It is created automatically by "munch". */'
6echo 'void initialize_all_files () {'
7
8# make it easy to use a different nm, e.g. for cross-developing
9MUNCH_NM=${MUNCH_NM-nm}
10if test "`$MUNCH_NM main.o | egrep 'T _?main$'`" = "" ; then
11 # System V style nm
12 shift;
13 $MUNCH_NM $* | egrep '^(.*[^a-zA-Z_]_|_)_?initialize_.*\.text' | \
14 sed -e 's/^.*\(_initialize_[a-zA-Z0-9_]*\)[^a-zA-Z0-9_].*$/ {extern void \1 (); \1 ();}/'
15else
16 # BSD style nm
17 $MUNCH_NM -p $* | egrep 'T *_?_initialize_' | \
18 sed -e 's/^.*T *_*\(.*\)/ {extern void _\1 (); _\1 ();}/'
19fi
20
21echo '}'
This page took 0.036227 seconds and 4 git commands to generate.