mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 01:57:00 +00:00
![Mike Hommey](/assets/img/avatar_default.png)
The tweaks are essentially the same as for win64 builds, with the only difference being the path for the VC binary directory. Differential Revision: https://phabricator.services.mozilla.com/D65480 --HG-- extra : moz-landing-system : lando
17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
if [ -z "${VSPATH}" ]; then
|
|
TOOLTOOL_DIR=${TOOLTOOL_DIR:-$topsrcdir}
|
|
VSPATH="$(cd ${TOOLTOOL_DIR} && pwd)/vs2017_15.8.4"
|
|
fi
|
|
|
|
if [ -d "${VSPATH}" ]; then
|
|
VSWINPATH="$(cd ${VSPATH} && (pwd -W 2>/dev/null || pwd))"
|
|
|
|
export WINDOWSSDKDIR="${VSWINPATH}/SDK"
|
|
export WIN32_REDIST_DIR="${VSPATH}/VC/redist/x86/Microsoft.VC141.CRT"
|
|
export WIN_UCRT_REDIST_DIR="${VSPATH}/SDK/Redist/ucrt/DLLs/x86"
|
|
export DIA_SDK_PATH="${VSPATH}/DIA SDK"
|
|
export VC_PATH="${VSPATH}/VC"
|
|
fi
|
|
|
|
ac_add_options --target=i686-pc-mingw32
|