Switch to focal for aarch64, update Qt

This commit is contained in:
Zion Nimchuk 2024-10-11 18:50:47 -07:00 committed by Megamouse
parent 42b255a4a2
commit d2612bed3a
3 changed files with 6 additions and 6 deletions

View file

@ -12,8 +12,8 @@ git submodule -q update --init $(awk '/path/ && !/llvm/ { print $3 }' .gitmodule
mkdir build && cd build || exit 1
export CC=clang
export CXX=clang++
export CC="${CLANG_BINARY}"
export CXX="${CLANGXX_BINARY}"
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
@ -27,8 +27,8 @@ cmake .. \
-DUSE_SYSTEM_FFMPEG=OFF \
-DUSE_DISCORD_RPC=ON \
-DOpenGL_GL_PREFERENCE=LEGACY \
-DLLVM_DIR=/opt/llvm/lib/cmake/llvm \
-DSTATIC_LINK_LLVM=ON \
-DBUILD_LLVM=OFF \
-G Ninja
ninja; build_status=$?;