Skip to content

Commit 05c21f5

Browse files
committed
compiler-rt: Fix arch detection for ppc64le
Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D110377
1 parent 6c6abb1 commit 05c21f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ macro(test_targets)
210210
test_target_arch(x86_64 "" "")
211211
endif()
212212
endif()
213-
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le")
213+
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le|ppc64le")
214214
test_target_arch(powerpc64le "" "-m64")
215215
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
216216
if(CMAKE_SYSTEM_NAME MATCHES "AIX")

0 commit comments

Comments
 (0)