summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-12-11 03:07:53 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-12-11 03:07:53 +0000
commit08216787ae1106ed46990317d5f5363925a40175 (patch)
tree8bd77525bd91856d5c0199a89eafe21556b51076
parentead7448a85aca10bfbeedb40336daf9ab84c02b6 (diff)
downloadllvm-08216787ae1106ed46990317d5f5363925a40175.tar.gz
llvm-08216787ae1106ed46990317d5f5363925a40175.tar.bz2
llvm-08216787ae1106ed46990317d5f5363925a40175.tar.xz
llvm/CMakeLists.txt: Fix LLVM_LIT_TOOLS_DIR since r143728. Cygwin does not need optional tools dir. MSVC and mingw may need one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146339 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6dd8169ebc..585db89410 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -164,8 +164,8 @@ if (MSVC OR XCODE)
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()