fune/taskcluster/scripts/misc/build-nsis.sh
Mike Hommey c2981c2307 Bug 1731195 - Use a linux-native makensis for Windows cross-builds. r=firefox-build-system-reviewers,andi
Because the result is 99% identical to the win64-nsis toolchain, we
produce a single toolchain that can be used both on native windows and
on cross builds.

Differential Revision: https://phabricator.services.mozilla.com/D125926
2021-09-17 09:11:22 +00:00

32 lines
783 B
Bash
Executable file

#!/bin/bash
set -x -e -v
export PATH=$MOZ_FETCHES_DIR/clang/bin:$PATH
# nsis/ contains the pre-built windows native nsis. We build a linux
# makensis from source and install it there.
INSTALL_DIR=$MOZ_FETCHES_DIR/nsis
cd $MOZ_FETCHES_DIR/nsis-3.07-src
patch -p1 < $GECKO_PATH/build/win32/nsis-no-underscore.patch
scons \
-j $(nproc) \
PATH=$PATH \
CC="clang --sysroot $MOZ_FETCHES_DIR/sysroot-x86_64-linux-gnu" \
CXX="clang++ --sysroot $MOZ_FETCHES_DIR/sysroot-x86_64-linux-gnu" \
SKIPSTUBS=all \
SKIPPLUGINS=all \
SKIPUTILS=all \
SKIPMISC=all \
PREFIX_DEST=$INSTALL_DIR/ \
PREFIX_BIN=bin \
NSIS_CONFIG_CONST_DATA_PATH=no \
VERSION=3.07 \
install-compiler
cd $MOZ_FETCHES_DIR
tar caf nsis.tar.zst nsis
mkdir -p $UPLOAD_DIR
cp nsis.tar.zst $UPLOAD_DIR