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 dfdac97 + 1b77f36 commit 5cc1abaCopy full SHA for 5cc1aba
scriptmodules/libretrocores/lr-pcsx-rearmed.sh
@@ -31,12 +31,14 @@ 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 HAVE_NEON_ASM=1 BUILTIN_GPU=neon)
36
+ else
37
+ params+=(BUILTIN_GPU=peops)
38
+ fi
39
elif isPlatform "aarch64"; then
40
params+=(ARCH=aarch64 DYNAREC=ari64)
41
fi
- if isPlatform "neon"; then
- params+=(HAVE_NEON=1 HAVE_NEON_ASM=1 BUILTIN_GPU=neon)
- fi
42
43
make -f Makefile.libretro "${params[@]}" clean
44
make -f Makefile.libretro "${params[@]}"
0 commit comments