* config/mips/{r3900.mt,r3900l.mt,tm-r3900.h,tm-r3900l.h}:
[deliverable/binutils-gdb.git] / gprof / make_solaris_order_map
CommitLineData
71128bd7
JL
1#!/bin/csh -f
2# $1 is the file containing the function ordering
3# $2 is the output file (a linker map file for the solaris native linker)
4
5echo 'text = LOAD ?RXO;' > $2
6foreach func (`cat $1`)
7 echo "text: .text%$func;" >> $2
8end
This page took 0.07426 seconds and 4 git commands to generate.