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-third.sh
blob
6b98a55e96453fe366e022d1c54c84b1a0c96011
1
#!/bin/sh
2
3
LD_LIBRARY_PATH
=
.
4
export
LD_LIBRARY_PATH
5
6
PROG
=
mozilla-bin
7
PLIBS
=
"-L."
8
9
TOOL
=
third
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
-g -all
$PLIBS
-toolargs
=
"-leaks all -before NS_ShutdownXPCOM"
16
17
cd
components
&& (
18
for
f
in
lib
*
.so
;
do
19
mv
..
/
$f
.
$PROG
.
$TOOL
.threads .
20
done
21
)