22 lines
909 B
Diff
22 lines
909 B
Diff
commit ba4ede595ff9599232f5dd2b4384c243137b53fc
|
|
Author: Daniel Kolesa <daniel@octaforge.org>
|
|
Date: Tue Jun 22 23:40:54 2021 +0200
|
|
|
|
enable compiler-rt support for ppc32
|
|
|
|
diff --git a/compiler-rt/cmake/base-config-ix.cmake b/compiler-rt/cmake/base-config-ix.cmake
|
|
index 1edab43..5c0c8a2 100644
|
|
--- a/compiler-rt/cmake/base-config-ix.cmake
|
|
+++ b/compiler-rt/cmake/base-config-ix.cmake
|
|
@@ -182,9 +182,7 @@ macro(test_targets)
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le")
|
|
test_target_arch(powerpc64le "" "-m64")
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
|
|
- if(CMAKE_SYSTEM_NAME MATCHES "AIX")
|
|
- test_target_arch(powerpc "" "-m32")
|
|
- endif()
|
|
+ test_target_arch(powerpc "" "-m32")
|
|
test_target_arch(powerpc64 "" "-m64")
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "s390x")
|
|
test_target_arch(s390x "" "")
|