[compiler-rt] r244647 - Revert the rest of r244634, since it breaks the standalone build

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 11 11:43:13 PDT 2015


Author: rnk
Date: Tue Aug 11 13:43:13 2015
New Revision: 244647

URL: http://llvm.org/viewvc/llvm-project?rev=244647&view=rev
Log:
Revert the rest of r244634, since it breaks the standalone build

compiler-rt can apparently be built without an installed copy of LLVM,
so we can't call its cmake code.

Modified:
    compiler-rt/trunk/CMakeLists.txt

Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=244647&r1=244646&r2=244647&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Tue Aug 11 13:43:13 2015
@@ -355,7 +355,7 @@ else()
   set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE)
 endif()
 
-find_llvm_external_project(projects libcxx COMPILER_RT_LLD_PATH)
+set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/tools/lld)
 if(EXISTS ${COMPILER_RT_LLD_PATH}/)
   set(COMPILER_RT_HAS_LLD_SOURCES TRUE)
 else()




More information about the llvm-commits mailing list