1
0
Fork 0
firefox/taskcluster/scripts/misc/build-libunwind.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

23 lines
537 B
Bash
Executable file

#!/bin/sh
set -e -x
artifact=$(basename $TOOLCHAIN_ARTIFACT)
dir=${artifact%.tar.*}
target=${dir#libunwind-}
# Make the android compiler-rt available to clang.
env UPLOAD_DIR= $GECKO_PATH/taskcluster/scripts/misc/repack-clang.sh
EXTRA_CMAKE_FLAGS="
$EXTRA_CMAKE_FLAGS
-DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=ON
-DCMAKE_C_COMPILER_WORKS=1
-DCMAKE_CXX_COMPILER_WORKS=1
-DLLVM_ENABLE_RUNTIMES=libunwind
-DLIBUNWIND_ENABLE_SHARED=OFF
"
export EXTRA_CMAKE_FLAGS
$(dirname $0)/build-llvm-common.sh runtimes install $target "$@"