mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
b48f6cf7dc
MozillaBuild 3.4's kernel name was `MINGW32_NT-6.2`, but the new MozillaBuild's kernel name looks like `MSYS_NT-10.0-19044`. Update existing first-party detection code to properly handle the modern MSYS "kernel name" format. Differential Revision: https://phabricator.services.mozilla.com/D140096
26 lines
812 B
Plaintext
26 lines
812 B
Plaintext
if test -d "$MOZ_FETCHES_DIR/clang/bin"; then
|
|
CLANG_DIR=`cd "$MOZ_FETCHES_DIR/clang/bin" ; pwd`
|
|
export PATH="${CLANG_DIR}:${PATH}"
|
|
|
|
if $(cd $MOZ_FETCHES_DIR/clang/lib/clang/* && test -d lib/windows); then
|
|
export LIB="$(cd $MOZ_FETCHES_DIR/clang/lib/clang/* && cd lib/windows && pwd)"
|
|
fi
|
|
fi
|
|
|
|
export CC=clang-cl
|
|
export CXX=clang-cl
|
|
export ENABLE_CLANG_PLUGIN=1
|
|
|
|
if [ -n "$UPLOAD_PATH" ]; then
|
|
case "$(uname -s)" in
|
|
MINGW*|MSYS*)
|
|
DIAGNOSTICS_DIR="$(cmd.exe //e:on //c if not exist ${UPLOAD_PATH} mkdir ${UPLOAD_PATH} && cd ${UPLOAD_PATH} && pwd)"
|
|
;;
|
|
*)
|
|
DIAGNOSTICS_DIR="${UPLOAD_PATH}"
|
|
;;
|
|
esac
|
|
export CFLAGS="$CFLAGS -fcrash-diagnostics-dir=${DIAGNOSTICS_DIR}"
|
|
export CXXFLAGS="$CXXFLAGS -fcrash-diagnostics-dir=${DIAGNOSTICS_DIR}"
|
|
fi
|