Skip to content

Commit 853264d

Browse files
authored
Merge pull request #3519 from cobalt2727/patch-5
lr-pcsx-rearmed: fix fatal build error on aarch64
2 parents bd3831a + b939a1b commit 853264d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

scriptmodules/libretrocores/lr-pcsx-rearmed.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ function build_lr-pcsx-rearmed() {
3131

3232
if isPlatform "arm"; then
3333
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
34+
elif isPlatform "aarch64"; then
35+
params+=(ARCH=aarch64 DYNAREC=ari64)
36+
fi
37+
if isPlatform "neon"; then
38+
params+=(HAVE_NEON=1 BUILTIN_GPU=neon)
39+
else
40+
params+=(HAVE_NEON=0 BUILTIN_GPU=peops)
3941
fi
4042

4143
make -f Makefile.libretro "${params[@]}" clean

0 commit comments

Comments
 (0)