[llvm-commits] [llvm] r146339 - /llvm/trunk/CMakeLists.txt

NAKAMURA Takumi geek4civic at gmail.com
Sat Dec 10 19:07:53 PST 2011


Author: chapuni
Date: Sat Dec 10 21:07:53 2011
New Revision: 146339

URL: http://llvm.org/viewvc/llvm-project?rev=146339&view=rev
Log:
llvm/CMakeLists.txt: Fix LLVM_LIT_TOOLS_DIR since r143728. Cygwin does not need optional tools dir. MSVC and mingw may need one.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=146339&r1=146338&r2=146339&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Sat Dec 10 21:07:53 2011
@@ -164,8 +164,8 @@
 endif()
 set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
 
-# On Win32/Cygwin, provide an option to specify the path to the GnuWin32 tools.
-if( WIN32 AND CYGWIN )
+# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
+if( WIN32 AND NOT CYGWIN )
   set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
 endif()
 





More information about the llvm-commits mailing list