repo.or.cz
/
wine-gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 454376 add -lCrun -lCstd for Solaris OS_LIBS, r=bsmedberg
[wine-gecko.git]
/
build
/
unix
/
run-hiprof.sh
blob
c2f8154cf2681f56c1afc7f88feae5605b75869c
1
#!/bin/sh
2
3
LD_LIBRARY_PATH
=
.
4
export
LD_LIBRARY_PATH
5
6
PROG
=
mozilla-bin
7
PLIBS
=
"-L."
8
9
TOOL
=
hiprof
10
11
for
l
in
.
/*
.so components
/*
.so
;
do
12
PLIBS
=
"
$PLIBS
-incobj
$l
"
13
done
14
15
$ECHO
atom
$PROG
-tool
$TOOL
-env
threads
-toolargs
=
"-calltime -systime"
-all
$PLIBS
16
17
cd
components
&& (
18
for
f
in
lib
*
.so
;
do
19
mv
..
/
$f
.
$PROG
.
$TOOL
.threads .
20
done
21
)