1
0
Fork 0
firefox/taskcluster/scripts/misc/source-test-common.sh
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
468 B
Bash
Executable file

#! /bin/bash -vex
set -x -e
export MOZBUILD_STATE_PATH=$HOME/workspace
# Add toolchain binaries to PATH to run ./mach configure
export PATH=$MOZ_FETCHES_DIR/clang/bin:$PATH
export PATH=$MOZ_FETCHES_DIR/rustc/bin:$PATH
export PATH=$MOZ_FETCHES_DIR/cbindgen:$PATH
export PATH=$MOZ_FETCHES_DIR/nasm:$PATH
export PATH=$MOZ_FETCHES_DIR/node/bin:$PATH
# Use clang as host compiler
export CC=$MOZ_FETCHES_DIR/clang/bin/clang
export CXX=$MOZ_FETCHES_DIR/clang/bin/clang++