[compiler-rt] r214130 - Exclude ASM from CompilerRT languages as an attempt to fix CMake failure in standalone mode
Alexey Samsonov
vonosmas at gmail.com
Mon Jul 28 15:04:19 PDT 2014
Author: samsonov
Date: Mon Jul 28 17:04:19 2014
New Revision: 214130
URL: http://llvm.org/viewvc/llvm-project?rev=214130&view=rev
Log:
Exclude ASM from CompilerRT languages as an attempt to fix CMake failure in standalone mode
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=214130&r1=214129&r2=214130&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Mon Jul 28 17:04:19 2014
@@ -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)
More information about the llvm-commits
mailing list