[llvm-commits] [llvm] r127562 - /llvm/trunk/tools/CMakeLists.txt
Oscar Fuentes
ofv at wanadoo.es
Sat Mar 12 19:06:59 PST 2011
Author: ofv
Date: Sat Mar 12 21:06:59 2011
New Revision: 127562
URL: http://llvm.org/viewvc/llvm-project?rev=127562&view=rev
Log:
LTO is not ready for Windows.
Modified:
llvm/trunk/tools/CMakeLists.txt
Modified: llvm/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/CMakeLists.txt?rev=127562&r1=127561&r2=127562&view=diff
==============================================================================
--- llvm/trunk/tools/CMakeLists.txt (original)
+++ llvm/trunk/tools/CMakeLists.txt Sat Mar 12 21:06:59 2011
@@ -46,7 +46,10 @@
add_subdirectory(edis)
add_subdirectory(llvmc)
-add_subdirectory(lto)
+if( NOT WIN32 )
+ add_subdirectory(lto)
+endif()
+
if( LLVM_ENABLE_PIC )
# TODO: support other systems:
if( CMAKE_SYSTEM_NAME STREQUAL "Linux" )
More information about the llvm-commits
mailing list