From 4462ec6c022c1d5a0afd5eb792a562f3cf9f0df0 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Mon, 28 Jul 2014 22:04:19 +0000 Subject: [PATCH] Exclude ASM from CompilerRT languages as an attempt to fix CMake failure in standalone mode llvm-svn: 214130 --- compiler-rt/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt index 78413b0..b457cb4 100644 --- a/compiler-rt/CMakeLists.txt +++ b/compiler-rt/CMakeLists.txt @@ -9,7 +9,7 @@ # Check if compiler-rt is built as a standalone project. if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) - project(CompilerRT ASM C CXX) + project(CompilerRT C CXX) set(COMPILER_RT_STANDALONE_BUILD TRUE) else() set(COMPILER_RT_STANDALONE_BUILD FALSE) -- 2.7.4