Merge pull request #3910 from joolswills/mupen64plus_armv8

mupen64plus - fix building on armv8 with 64bit kernel/32bit userland
This commit is contained in:
Jools Wills 2024-04-26 01:44:41 +01:00 committed by GitHub
commit eaa8a13885
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -169,6 +169,7 @@ function build_mupen64plus() {
isPlatform "x86" && params+=("SSE=SSE2")
isPlatform "armv6" && params+=("HOST_CPU=armv6")
isPlatform "armv7" && params+=("HOST_CPU=armv7")
isPlatform "armv8" && params+=("HOST_CPU=armv8")
isPlatform "aarch64" && params+=("HOST_CPU=aarch64")
# we don't ship a Vulkan enabled front-end, so disable Vulkan in the core project
params+=("VULKAN=0")