2012-09-05 23:09:50 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2014-07-04 06:05:45 +04:00
|
|
|
MOZ_AUTOMATION_L10N_CHECK=0
|
|
|
|
|
|
|
|
if [ "x$IS_NIGHTLY" = "xyes" ]; then
|
2015-03-10 23:20:02 +03:00
|
|
|
# Some nightlies (eg: Mulet) don't want these set.
|
|
|
|
MOZ_AUTOMATION_UPLOAD_SYMBOLS=${MOZ_AUTOMATION_UPLOAD_SYMBOLS-1}
|
|
|
|
MOZ_AUTOMATION_UPDATE_PACKAGING=${MOZ_AUTOMATION_UPDATE_PACKAGING-1}
|
2015-03-17 22:29:07 +03:00
|
|
|
MOZ_AUTOMATION_SDK=${MOZ_AUTOMATION_SDK-1}
|
2014-07-04 06:05:45 +04:00
|
|
|
fi
|
2012-09-05 23:09:50 +04:00
|
|
|
. "$topsrcdir/build/mozconfig.common"
|
|
|
|
|
2012-07-20 19:28:41 +04:00
|
|
|
if [ -d "$topsrcdir/clang" ]; then
|
|
|
|
# mozilla-central based build
|
|
|
|
export CC=$topsrcdir/clang/bin/clang
|
|
|
|
export CXX=$topsrcdir/clang/bin/clang++
|
2014-05-31 17:13:32 +04:00
|
|
|
export LLVMCONFIG=$topsrcdir/clang/bin/llvm-config
|
2012-07-20 19:28:41 +04:00
|
|
|
elif [ -d "$topsrcdir/../clang" ]; then
|
|
|
|
# comm-central based build
|
|
|
|
export CC=$topsrcdir/../clang/bin/clang
|
|
|
|
export CXX=$topsrcdir/../clang/bin/clang++
|
2014-05-31 17:13:32 +04:00
|
|
|
export LLVMCONFIG=$topsrcdir/../clang/bin/llvm-config
|
2012-07-20 19:28:41 +04:00
|
|
|
fi
|
2012-12-06 00:47:25 +04:00
|
|
|
|
|
|
|
# If not set use the system default clang
|
|
|
|
if [ -z "$CC" ]; then
|
|
|
|
export CC=clang
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If not set use the system default clang++
|
|
|
|
if [ -z "$CXX" ]; then
|
|
|
|
export CXX=clang++
|
|
|
|
fi
|
|
|
|
|
2015-02-27 16:58:57 +03:00
|
|
|
export SOCORRO_SYMBOL_UPLOAD_TOKEN_FILE=/builds/crash-stats-api.token
|