Commit 6bf6d1dc authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #15373 from pmur:libpng-vsx-fix

parents 56e832ee 8aca1934
...@@ -47,7 +47,9 @@ if(";${CPU_BASELINE_FINAL};" MATCHES "SSE2" ...@@ -47,7 +47,9 @@ if(";${CPU_BASELINE_FINAL};" MATCHES "SSE2"
endif() endif()
if(PPC64LE OR PPC64) if(PPC64LE OR PPC64)
if(ENABLE_VSX AND NOT PPC64) # VSX3 features are backwards compatible
if(";${CPU_BASELINE_FINAL};" MATCHES "VSX.*"
AND NOT PPC64)
list(APPEND lib_srcs powerpc/powerpc_init.c powerpc/filter_vsx_intrinsics.c) list(APPEND lib_srcs powerpc/powerpc_init.c powerpc/filter_vsx_intrinsics.c)
add_definitions(-DPNG_POWERPC_VSX_OPT=2) add_definitions(-DPNG_POWERPC_VSX_OPT=2)
else() else()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment