We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd3831a + b939a1b commit 853264dCopy full SHA for 853264d
scriptmodules/libretrocores/lr-pcsx-rearmed.sh
@@ -31,11 +31,13 @@ function build_lr-pcsx-rearmed() {
31
32
if isPlatform "arm"; then
33
params+=(ARCH=arm DYNAREC=ari64)
34
- if isPlatform "neon"; then
35
- params+=(HAVE_NEON=1 BUILTIN_GPU=neon)
36
- else
37
- params+=(HAVE_NEON=0 BUILTIN_GPU=peops)
38
- fi
+ elif isPlatform "aarch64"; then
+ params+=(ARCH=aarch64 DYNAREC=ari64)
+ fi
+ if isPlatform "neon"; then
+ params+=(HAVE_NEON=1 BUILTIN_GPU=neon)
39
+ else
40
+ params+=(HAVE_NEON=0 BUILTIN_GPU=peops)
41
fi
42
43
make -f Makefile.libretro "${params[@]}" clean
0 commit comments