mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
64a109d28a
CI/FreeBSD: unbreak build with bundled libc++ 12 Co-authored-by: Jan Beich <jbeich@FreeBSD.org>
30 lines
970 B
Bash
Executable File
30 lines
970 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# Pull all the submodules except llvm
|
|
# Note: Tried to use git submodule status, but it takes over 20 seconds
|
|
# shellcheck disable=SC2046
|
|
git submodule -q update --init --depth 1 $(awk '/path/ && !/llvm/ { print $3 }' .gitmodules)
|
|
|
|
# Prefer newer Clang than in base system (see also .ci/install-freebsd.sh)
|
|
# libc++ isn't in llvm* packages, so download manually
|
|
fetch https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/libcxx-12.0.0.src.tar.xz
|
|
tar xf libcxx-12.0.0.src.tar.xz
|
|
export CC=clang12 CXX=clang++12
|
|
export CXXFLAGS="$CXXFLAGS -nostdinc++ -D_LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS -isystem $PWD/libcxx-12.0.0.src/include"
|
|
|
|
CONFIGURE_ARGS="
|
|
-DWITH_LLVM=OFF
|
|
-DUSE_PRECOMPILED_HEADERS=OFF
|
|
-DUSE_NATIVE_INSTRUCTIONS=OFF
|
|
-DUSE_SYSTEM_FFMPEG=ON
|
|
-DUSE_SYSTEM_CURL=ON
|
|
-DUSE_SYSTEM_LIBPNG=ON
|
|
"
|
|
|
|
# shellcheck disable=SC2086
|
|
cmake -B build -G Ninja $CONFIGURE_ARGS
|
|
cmake --build build
|
|
|
|
ccache --show-stats
|
|
ccache --zero-stats
|