File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
taskcluster/scripts/toolchain Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ eval "LDFLAGS=\$${RUST_ANDROID_PREFIX}_LDFLAGS_${NSS_TARGET//-/_}"
5757# Build NSPR
5858NSPR_BUILD_DIR=$( mktemp -d)
5959pushd " ${NSPR_BUILD_DIR} "
60- " ${NSS_SRC_DIR} " /nspr/configure \
60+ if ! " ${NSS_SRC_DIR} " /nspr/configure \
6161 STRIP=" ${STRIP} " \
6262 RANLIB=" ${RANLIB} " \
6363 AR=" ${AR} " \
@@ -70,7 +70,11 @@ pushd "${NSPR_BUILD_DIR}"
7070 --target=" ${NSS_TARGET} " \
7171 --enable-64bit \
7272 --disable-debug \
73- --enable-optimize
73+ --enable-optimize; then
74+ echo " === NSPR configure failed, dumping config.log ==="
75+ cat config.log
76+ exit 1
77+ fi
7478make
7579popd
7680
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ git submodule update --init
55./taskcluster/scripts/toolchain/setup-fetched-rust-toolchain.sh
66. ./taskcluster/scripts/toolchain/cross-compile-setup.sh
77pushd libs
8- ./build-all.sh darwin-x86-64
98./build-all.sh darwin-aarch64
9+ ./build-all.sh darwin-x86-64
1010popd
1111mkdir -p " $UPLOAD_DIR "
1212tar -czf " $UPLOAD_DIR " /macos.tar.gz libs/desktop
You can’t perform that action at this time.
0 commit comments