mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-23 00:30:06 +00:00
Modify Linux build script to also build for ARM64
This commit is contained in:
parent
03ea6ecaa3
commit
6a06833ff1
24
.ci/linux.sh
24
.ci/linux.sh
@ -1,5 +1,28 @@
|
|||||||
#!/bin/sh -ex
|
#!/bin/sh -ex
|
||||||
|
|
||||||
|
if [ "$TARGET" = "arm64-appimage" ]; then
|
||||||
|
mkdir build && cd build
|
||||||
|
CC=aarch64-linux-gnu-gcc-11 CXX=aarch64-linux-gnu-g++-11 cmake .. -G Ninja \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
||||||
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
||||||
|
-DENABLE_ASM=OFF \
|
||||||
|
-DENABLE_QT_TRANSLATION=ON \
|
||||||
|
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=ON \
|
||||||
|
-DCITRA_ENABLE_BUNDLE_TARGET=OFF \
|
||||||
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
|
||||||
|
-DUSE_DISCORD_PRESENCE=ON
|
||||||
|
ninja
|
||||||
|
|
||||||
|
DESTDIR="$PWD/AppDir" ninja install
|
||||||
|
mv ./AppDir/usr/local/* ./AppDir/usr
|
||||||
|
rm -rf ./AppDir/usr/local
|
||||||
|
sed -e s/PrefersNonDefaultGPU=true//g -i ./AppDir/usr/share/applications/citra-qt.desktop
|
||||||
|
7z a AppDir.7z AppDir
|
||||||
|
mkdir bundle
|
||||||
|
mv AppDir.7z ./bundle
|
||||||
|
else
|
||||||
|
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake .. -G Ninja \
|
cmake .. -G Ninja \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
@ -18,3 +41,4 @@ fi
|
|||||||
ccache -s
|
ccache -s
|
||||||
|
|
||||||
ctest -VV -C Release
|
ctest -VV -C Release
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user