diff options
author | Chris Bieneman <beanz@apple.com> | 2015-02-13 23:24:14 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-02-13 23:24:14 +0000 |
commit | eff99e8ac53a83bbf9e408f6f59669132b272ae3 (patch) | |
tree | 7e131010d15235612680255f887ea79d59638c26 /llvm/utils/unittest | |
parent | 22bba5dd4b6edda00a6c67dc741d73024a7fa29a (diff) | |
download | bcm5719-llvm-eff99e8ac53a83bbf9e408f6f59669132b272ae3.tar.gz bcm5719-llvm-eff99e8ac53a83bbf9e408f6f59669132b272ae3.zip |
Raising minimum required Visual Studio version to 2013.
This is based on the discussions on: [LLVMdev] [RFC] Raising LLVM minimum required MSVC version to 2013 for trunk
llvm-svn: 229185
Diffstat (limited to 'llvm/utils/unittest')
-rw-r--r-- | llvm/utils/unittest/CMakeLists.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/utils/unittest/CMakeLists.txt b/llvm/utils/unittest/CMakeLists.txt index 7ac894dff14..b34e22ae0cb 100644 --- a/llvm/utils/unittest/CMakeLists.txt +++ b/llvm/utils/unittest/CMakeLists.txt @@ -32,12 +32,6 @@ if (NOT LLVM_ENABLE_THREADS) add_definitions( -DGTEST_HAS_PTHREAD=0 ) endif() -# Visual Studio 2012 only supports up to 8 template parameters in -# std::tr1::tuple by default, but gtest requires 10 -if(MSVC AND MSVC_VERSION EQUAL 1700) - add_definitions(-D_VARIADIC_MAX=10) -endif () - set(LIBS LLVMSupport # Depends on llvm::raw_ostream ) |