* lib/sim-defs.exp (sim_version): Simplify.
[deliverable/binutils-gdb.git] / gprof / make_hp_order_obj
CommitLineData
71128bd7
JL
1#!/bin/csh -f
2# $1 is the file containing the function ordering
3# $2 is the output file
4
5echo ' .SPACE $TEXT$' > /tmp/$$.s
6foreach func (`cat $1`)
7 echo " .NSUBSPA $func,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY" >> /tmp/$$.s
8end
9
10gcc -c /tmp/$$.s -o $2
2684fbdb 11rm -f /tmp/$$.s
This page took 0.084401 seconds and 4 git commands to generate.