diff options
| author | Zachary Turner <zturner@google.com> | 2015-01-30 18:08:05 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-01-30 18:08:05 +0000 |
| commit | 6037dcfb8beac5a5068deaed0efc8a263edbd184 (patch) | |
| tree | 6e8180175738a1728f3fa4fe037185167d077f2b | |
| parent | 82af9438d0fa27b21f75bdea5832f1baa5450863 (diff) | |
| download | bcm5719-llvm-6037dcfb8beac5a5068deaed0efc8a263edbd184.tar.gz bcm5719-llvm-6037dcfb8beac5a5068deaed0efc8a263edbd184.zip | |
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.
llvm-svn: 227587
| -rw-r--r-- | llvm/tools/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt index b496f5f27b7..30b12900035 100644 --- a/llvm/tools/CMakeLists.txt +++ b/llvm/tools/CMakeLists.txt @@ -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) |

