[compiler-rt] r276258 - Revert r276256 - Attempt to fix clang-cmake-mips after r268977.
Daniel Sanders via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 21 02:52:33 PDT 2016
Author: dsanders
Date: Thu Jul 21 04:52:33 2016
New Revision: 276258
URL: http://llvm.org/viewvc/llvm-project?rev=276258&view=rev
Log:
Revert r276256 - Attempt to fix clang-cmake-mips after r268977.
It didn't fix the problem on the buildbot. CAN_TARGET_mips64 is still true.
Modified:
compiler-rt/trunk/cmake/builtin-config-ix.cmake
Modified: compiler-rt/trunk/cmake/builtin-config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/builtin-config-ix.cmake?rev=276258&r1=276257&r2=276258&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/builtin-config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/builtin-config-ix.cmake Thu Jul 21 04:52:33 2016
@@ -2,12 +2,6 @@ include(BuiltinTests)
# Make all the tests only check the compiler
set(TEST_COMPILE_ONLY On)
-# Temporary fix for Mips buildbots this broke. It's the linker that rejects
-# inappropriate multilibs on this system.
-check_compile_definition("__mips__" "" IS_MIPS_HOST)
-if(IS_MIPS_HOST)
- set(TEST_COMPILE_ONLY OFF)
-endif()
builtin_check_c_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG)
builtin_check_c_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG)
More information about the llvm-commits
mailing list