Commit d25ce872 by David 'Digit' Turner Committed by David Turner

Fix LLVM-based Arm64 build.

This changes a CMake FATAL_ERROR message into a WARNING to allow building SwiftShader for arm64 with an LLVM backend properly. Otherwise, the CMake configuration aborts prematurely even if Subzero is not used in the final binaries. Bug: b/154080675 Change-Id: Ia9ea9896d793071c6d275864955a89a1c262c5d6 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/43853 Kokoro-Result: kokoro <noreply+kokoro@google.com> Tested-by: 's avatarDavid Turner <digit@google.com> Presubmit-Ready: David Turner <digit@google.com> Reviewed-by: 's avatarBen Clayton <bclayton@google.com> Reviewed-by: 's avatarAntonio Maiorano <amaiorano@google.com>
parent 5470988c
......@@ -76,7 +76,7 @@ elseif(ARCH STREQUAL "mipsel")
)
set(SUBZERO_TARGET_CPU MIPS32)
else()
message(FATAL_ERROR "Architecture '${ARCH}' not supported by Subzero")
message(WARNING "Architecture '${ARCH}' not supported by Subzero")
endif()
if(WIN32)
......
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