1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-12-05 20:32:07 -06:00

Revert a9312c837e . Use proper GCC binary location and CCACHE changes in

the CI
This commit is contained in:
Fijxu
2024-03-25 00:11:11 -03:00
parent 0c2bdc6f61
commit d4375a21ef
3 changed files with 7 additions and 9 deletions

View File

@@ -6,7 +6,7 @@
# Exit on error, rather than continuing with the rest of the script.
set -e
ccache -s
ccache -sv
mkdir build || true && cd build
cmake .. \
@@ -15,8 +15,8 @@ cmake .. \
-DSUYU_USE_PRECOMPILED_HEADERS=OFF \
-DDYNARMIC_USE_PRECOMPILED_HEADERS=OFF \
-DCMAKE_CXX_FLAGS="-march=x86-64-v2" \
-DCMAKE_CXX_COMPILER=/usr/bin/g++ \
-DCMAKE_C_COMPILER=/usr/bin/gcc \
-DCMAKE_CXX_COMPILER=/usr/local/bin/g++ \
-DCMAKE_C_COMPILER=/usr/local/bin/gcc \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DDISPLAY_VERSION=$1 \
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF \
@@ -31,7 +31,7 @@ cmake .. \
ninja
ccache -s
ccache -sv
ctest -VV -C Release