dep/vixl: Fix building for AArch32

This commit is contained in:
Connor McLaughlin
2020-11-21 01:52:13 +10:00
parent 125d104df4
commit 302b08023e
10 changed files with 28 additions and 27 deletions

View File

@ -31,7 +31,7 @@ if(BUILD_LIBRETRO_CORE)
add_subdirectory(libretro-common)
endif()
if(${CPU_ARCH} STREQUAL "aarch64")
if(${CPU_ARCH} STREQUAL "aarch32" OR ${CPU_ARCH} STREQUAL "aarch64")
add_subdirectory(vixl)
endif()