gecko-dev/build/mozconfig.clang-cl
Mitchell Hentges b48f6cf7dc Bug 1757813: Detect "MSYS" unames as msyshosts r=firefox-build-system-reviewers,nalexander
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
2022-03-02 21:01:07 +00:00

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