repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Fix for endianness bugs in tx39 sio sim.
[binutils-gdb.git]
/
gprof
/
make_solaris_order_map
blob
616770987cba1259958e6000622411eaec71e5b2
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
5
echo
'text = LOAD ?RXO;'
>
$2
6
foreach func
(
`cat
$1
`
)
7
echo
"text: .text%
$func
;"
>>
$2
8
end