[PATCH] D25710: [Doc] Drop MSVC2013 support
Mehdi AMINI via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 17 16:16:27 PDT 2016
mehdi_amini created this revision.
mehdi_amini added reviewers: jlebar, zturner, jmolloy.
mehdi_amini added a subscriber: llvm-commits.
This is only updating the documentation. We'll be able to
update the codebase piece by piece.
https://reviews.llvm.org/D25710
Files:
docs/CodingStandards.rst
docs/GettingStarted.rst
docs/GettingStartedVS.rst
Index: docs/GettingStartedVS.rst
===================================================================
--- docs/GettingStartedVS.rst
+++ docs/GettingStartedVS.rst
@@ -39,13 +39,13 @@
Hardware
--------
-Any system that can adequately run Visual Studio 2013 is fine. The LLVM
+Any system that can adequately run Visual Studio 2015 is fine. The LLVM
source tree and object files, libraries and executables will consume
approximately 3GB.
Software
--------
-You will need Visual Studio 2013 or higher, with the latest Update installed.
+You will need Visual Studio 2015 or higher, with the latest Update installed.
You will also need the `CMake <http://www.cmake.org/>`_ build system since it
generates the project files you will use to build with. CMake 2.8.12.2 is the
Index: docs/GettingStarted.rst
===================================================================
--- docs/GettingStarted.rst
+++ docs/GettingStarted.rst
@@ -262,7 +262,7 @@
* Clang 3.1
* GCC 4.7
-* Visual Studio 2013
+* Visual Studio 2015
Anything older than these toolchains *may* work, but will require forcing the
build system with a special option and is not really a supported host platform.
@@ -312,7 +312,7 @@
This section mostly applies to Linux and older BSDs. On Mac OS X, you should
have a sufficiently modern Xcode, or you will likely need to upgrade until you
-do. On Windows, just use Visual Studio 2013 as the host compiler, it is
+do. On Windows, just use Visual Studio 2015 as the host compiler, it is
explicitly supported and widely available. FreeBSD 10.0 and newer have a modern
Clang as the system compiler.
Index: docs/CodingStandards.rst
===================================================================
--- docs/CodingStandards.rst
+++ docs/CodingStandards.rst
@@ -127,17 +127,13 @@
* Variadic templates: N2242_
* Explicit conversion operators: N2437_
* Defaulted and deleted functions: N2346_
-
- * But not defaulted move constructors or move assignment operators, MSVC 2013
- cannot synthesize them.
* Initializer lists: N2627_
* Delegating constructors: N1986_
* Default member initializers (non-static data member initializers): N2756_
* Only use these for scalar members that would otherwise be left
uninitialized. Non-scalar members generally have appropriate default
- constructors, and MSVC 2013 has problems when braced initializer lists are
- involved.
+ constructors.
.. _N2118: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html
.. _N2439: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D25710.74931.patch
Type: text/x-patch
Size: 2592 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161017/55b4bf69/attachment.bin>
More information about the llvm-commits
mailing list