mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Fix aarch64 build script
This commit is contained in:
parent
4fe306c9ad
commit
47fb653044
1 changed files with 8 additions and 0 deletions
|
@ -4,6 +4,14 @@ if [ -z "$CIRRUS_CI" ]; then
|
|||
cd rpcs3 || exit 1
|
||||
fi
|
||||
|
||||
git config --global --add safe.directory '*'
|
||||
|
||||
# Pull all the submodules except llvm
|
||||
# shellcheck disable=SC2046
|
||||
git submodule -q update --init $(awk '/path/ && !/llvm/ && !/SPIRV/ { print $3 }' .gitmodules)
|
||||
|
||||
mkdir build && cd build || exit 1
|
||||
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue