mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
f33335cf10
It turns out, we don't need to `mk_add_options export` the variables from the in-tree mozconfigs. If anything, that causes problems when trying to simplify the mozconfigs, because it makes the variables exported from .mozconfig.mk, overriding what configure may change and store in autoconf.mk. All the variables are handled by configure in a way that makes them available in autoconf.mk, so there's no loss there, and with the python/shell-based mozconfig loader, it turns out we don't need to go through extra normalization via cmd. autospider.py, being its own pseudo-mozconfig parser, still does need it, though, but it was hooking into it already, so just inline that. Differential Revision: https://phabricator.services.mozilla.com/D17769 --HG-- extra : moz-landing-system : lando
20 lines
703 B
Plaintext
20 lines
703 B
Plaintext
if test -d "$topsrcdir/clang/bin"; then
|
|
CLANG_DIR=`cd "$topsrcdir/clang/bin" ; pwd`
|
|
export PATH="${CLANG_DIR}:${PATH}"
|
|
|
|
if $(cd $topsrcdir/clang/lib/clang/* && test -d lib/windows); then
|
|
CLANG_LIB_DIR="$(cd $topsrcdir/clang/lib/clang/* && cd lib/windows && pwd)"
|
|
export LIB=$LIB:$CLANG_LIB_DIR
|
|
fi
|
|
fi
|
|
|
|
export CC=clang-cl
|
|
export CXX=clang-cl
|
|
export ENABLE_CLANG_PLUGIN=1
|
|
|
|
if [ -n "$UPLOAD_PATH" ]; then
|
|
DIAGNOSTICS_DIR="$(cmd.exe //e:on //c if not exist ${UPLOAD_PATH} mkdir ${UPLOAD_PATH} && cd ${UPLOAD_PATH} && pwd)"
|
|
export CFLAGS="$CFLAGS -fcrash-diagnostics-dir=${DIAGNOSTICS_DIR}"
|
|
export CXXFLAGS="$CXXFLAGS -fcrash-diagnostics-dir=${DIAGNOSTICS_DIR}"
|
|
fi
|