summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-02-10 10:29:42 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-02-10 10:29:42 +0000
commitcbf023d7ececf92071a7175ccf9b42bb15adfe8d (patch)
treea4838b714707b211302828b02d46a1f96094dac2 /cmake
parent2fcc17e3ba7570462b95a8429acfdf20aca828e7 (diff)
downloadllvm-cbf023d7ececf92071a7175ccf9b42bb15adfe8d.tar.gz
llvm-cbf023d7ececf92071a7175ccf9b42bb15adfe8d.tar.bz2
llvm-cbf023d7ececf92071a7175ccf9b42bb15adfe8d.tar.xz
CMake: LLVM_LIT_TOOLS_DIR is needed only on Win32 hosts to use GnuWin32 tools.
Unixen and Cygwin do not need it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/HandleLLVMOptions.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
index afdd0731b2..7ca2bd07fd 100644
--- a/cmake/modules/HandleLLVMOptions.cmake
+++ b/cmake/modules/HandleLLVMOptions.cmake
@@ -21,8 +21,6 @@ endif()
set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}"
CACHE STRING "Default options for lit")
-set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
-
if( LLVM_ENABLE_ASSERTIONS )
# MSVC doesn't like _DEBUG on release builds. See PR 4379.
if( NOT MSVC )
@@ -48,6 +46,9 @@ if(WIN32)
else(CYGWIN)
set(LLVM_ON_WIN32 1)
set(LLVM_ON_UNIX 0)
+
+ # This is effective only on Win32 hosts to use gnuwin32 tools.
+ set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
endif(CYGWIN)
set(LTDL_SHLIB_EXT ".dll")
set(EXEEXT ".exe")