Skip to content

Commit a9f0b81

Browse files
committed
lr-pcsx-rearmed: fix build for NEON platforms
Upstream introduced recently an ASM optimized path for NEON platforms, enabled with a new `define`. Added the new define for NEON platforms, otherwise the build fails because it picks the wrong ASM path. Introduced in libretro/pcsx_rearmed@047899a
1 parent a59179a commit a9f0b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scriptmodules/libretrocores/lr-pcsx-rearmed.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function build_lr-pcsx-rearmed() {
3535
params+=(ARCH=aarch64 DYNAREC=ari64)
3636
fi
3737
if isPlatform "neon"; then
38-
params+=(HAVE_NEON=1 BUILTIN_GPU=neon)
38+
params+=(HAVE_NEON=1 HAVE_NEON_ASM=1 BUILTIN_GPU=neon)
3939
else
4040
params+=(HAVE_NEON=0 BUILTIN_GPU=peops)
4141
fi

0 commit comments

Comments
 (0)