https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 28f2c0bd5d48546dc8ab9a79ebf7a8338eda0ae1 authored by ffxbld on 16 September 2011, 15:31:15 UTC
Added tag FENNEC_7_0b6_BUILD1 for changeset 9762e914552f. CLOSED TREE a=release
Tip revision: 28f2c0b
run-third.sh
#!/bin/sh

LD_LIBRARY_PATH=.
export LD_LIBRARY_PATH

PROG=mozilla-bin
PLIBS="-L."

TOOL=third

for l in ./*.so components/*.so; do
    PLIBS="$PLIBS -incobj $l"
done

$ECHO atom $PROG -tool $TOOL -env threads -g -all $PLIBS -toolargs="-leaks all -before NS_ShutdownXPCOM"

cd components && (
    for f in lib*.so; do
        mv ../$f.$PROG.$TOOL.threads .
    done
)
back to top