Bug 381843 - Move for-var-in and for-let-in hoisting from the emitter to the parser...
[mozilla-central.git] / build / unix / run-hiprof.sh
blobc2f8154cf2681f56c1afc7f88feae5605b75869c
1 #!/bin/sh
3 LD_LIBRARY_PATH=.
4 export LD_LIBRARY_PATH
6 PROG=mozilla-bin
7 PLIBS="-L."
9 TOOL=hiprof
11 for l in ./*.so components/*.so; do
12 PLIBS="$PLIBS -incobj $l"
13 done
15 $ECHO atom $PROG -tool $TOOL -env threads -toolargs="-calltime -systime" -all $PLIBS
17 cd components && (
18 for f in lib*.so; do
19 mv ../$f.$PROG.$TOOL.threads .
20 done