зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
751 B
Plaintext
26 строки
751 B
Plaintext
if [ "x$IS_NIGHTLY" = "xyes" ]; then
|
|
# Some nightlies (eg: Mulet) don't want these set.
|
|
MOZ_AUTOMATION_UPDATE_PACKAGING=${MOZ_AUTOMATION_UPDATE_PACKAGING-1}
|
|
fi
|
|
|
|
. "$topsrcdir/build/mozconfig.common"
|
|
|
|
TOOLTOOL_DIR=${TOOLTOOL_DIR:-$topsrcdir}
|
|
|
|
if [ -n "$FORCE_GCC" -o -n "$MOZ_PGO" ]; then
|
|
CC="$TOOLTOOL_DIR/gcc/bin/gcc"
|
|
CXX="$TOOLTOOL_DIR/gcc/bin/g++"
|
|
|
|
# We want to make sure we use binutils and other binaries in the tooltool
|
|
# package.
|
|
mk_add_options "export PATH=$TOOLTOOL_DIR/gcc/bin:$PATH"
|
|
else
|
|
CC="$TOOLTOOL_DIR/clang/bin/clang"
|
|
CXX="$TOOLTOOL_DIR/clang/bin/clang++"
|
|
export ENABLE_CLANG_PLUGIN=1
|
|
|
|
mk_add_options "export PATH=$TOOLTOOL_DIR/binutils/bin:$PATH"
|
|
fi
|
|
|
|
. "$topsrcdir/build/unix/mozconfig.stdcxx"
|