26 lines
969 B
Diff
26 lines
969 B
Diff
|
From 72191190adea8e861e9a383b83799e7472b80e30 Mon Sep 17 00:00:00 2001
|
||
|
From: Tom Stellard <tstellar@redhat.com>
|
||
|
Date: Thu, 23 Sep 2021 18:06:41 -0700
|
||
|
Subject: [PATCH] Fix compiler-rt arch detection for ppc64le
|
||
|
|
||
|
---
|
||
|
compiler-rt/cmake/base-config-ix.cmake | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/compiler-rt/cmake/base-config-ix.cmake b/compiler-rt/cmake/base-config-ix.cmake
|
||
|
index c11342e68813..3ca9dc0f5515 100644
|
||
|
--- a/compiler-rt/cmake/base-config-ix.cmake
|
||
|
+++ b/compiler-rt/cmake/base-config-ix.cmake
|
||
|
@@ -204,7 +204,7 @@ macro(test_targets)
|
||
|
test_target_arch(x86_64 "" "")
|
||
|
endif()
|
||
|
endif()
|
||
|
- elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le")
|
||
|
+ elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le|ppc64le")
|
||
|
test_target_arch(powerpc64le "" "-m64")
|
||
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
|
||
|
if(CMAKE_SYSTEM_NAME MATCHES "AIX")
|
||
|
--
|
||
|
2.27.0
|
||
|
|