CMake: Fix build on ppc64
ppc64le was fixed before, but ppc64 (big-endian) was still failing.
This commit is contained in:
2
deps/media-playback/CMakeLists.txt
vendored
2
deps/media-playback/CMakeLists.txt
vendored
@@ -23,7 +23,7 @@ add_library(media-playback STATIC
|
||||
${media-playback_SOURCES}
|
||||
)
|
||||
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64(le)?")
|
||||
target_compile_options(media-playback
|
||||
PUBLIC
|
||||
-mvsx)
|
||||
|
Reference in New Issue
Block a user