Skip to content

Commit eb84552

Browse files
committed
compiler-rt: Fix arch detection for ppc64le
Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D110377 (cherry picked from commit 05c21f5)
1 parent ec4829e commit eb84552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/cmake/base-config-ix.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ macro(test_targets)
204204
test_target_arch(x86_64 "" "")
205205
endif()
206206
endif()
207-
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le")
207+
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le|ppc64le")
208208
test_target_arch(powerpc64le "" "-m64")
209209
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
210210
if(CMAKE_SYSTEM_NAME MATCHES "AIX")

0 commit comments

Comments
 (0)