[llvm] r227587 - Really really don't build llvm-pdbdump on MSVC < 2013.

Zachary Turner zturner at google.com
Fri Jan 30 10:08:05 PST 2015


Author: zturner
Date: Fri Jan 30 12:08:05 2015
New Revision: 227587

URL: http://llvm.org/viewvc/llvm-project?rev=227587&view=rev
Log:
Really really don't build llvm-pdbdump on MSVC < 2013.

I thought it was enough to just not add the tool subdirectory,
but apparently I need to explicitly mark it ignore.

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=227587&r1=227586&r2=227587&view=diff
==============================================================================
--- llvm/trunk/tools/CMakeLists.txt (original)
+++ llvm/trunk/tools/CMakeLists.txt Fri Jan 30 12:08:05 2015
@@ -66,6 +66,8 @@ if(MSVC AND NOT(MSVC_VERSION LESS 1800))
   # MSVC 2013 and higher.  Since this is strictly a utility, and since we hope
   # to drop support for MSVC 2012 soon, don't build this for MSVC < 2013.
   add_llvm_tool_subdirectory(llvm-pdbdump)
+else()
+  ignore_llvm_tool_subdirectory(llbm-pdbdump)
 endif()
 
 if(NOT CYGWIN AND LLVM_ENABLE_PIC)





More information about the llvm-commits mailing list