Skip to content

Commit 058c5df

Browse files
committed
Raise the minimum Visual Studio version to VS2019
As raised here: https://lists.llvm.org/pipermail/llvm-dev/2021-November/153881.html Now that VS2022 is on general release, LLVM is expected to build on VS2017, VS2019 and VS2022, which is proving hazardous to maintain due to changes in behaviour including preprocessor and constexpr changes. Plus of the few developers that work with VS, many have already moved to VS2019/22. This patch proposes to raise the minimum supported version to VS2019 (16.x) - I've made the hard limit 16.0 or later, with the soft limit VS2019 16.7 - older versions of VS2019 are "allowed" (at your own risk) via the LLVM_FORCE_USE_OLD_TOOLCHAIN cmake flag. Differential Revision: https://reviews.llvm.org/D114639
1 parent 784e01a commit 058c5df

File tree

10 files changed

+34
-29
lines changed

10 files changed

+34
-29
lines changed

clang/docs/ClangFormatStyleOptions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ the configuration (without a prefix: ``Auto``).
162162
<https://www.webkit.org/coding/coding-style.html>`_
163163
* ``Microsoft``
164164
A style complying with `Microsoft's style guide
165-
<https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017>`_
165+
<https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference>`_
166166
* ``GNU``
167167
A style complying with the `GNU coding standards
168168
<https://www.gnu.org/prep/standards/standards.html>`_

clang/docs/UsersManual.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3657,7 +3657,7 @@ When using CMake and the Visual Studio generators, the toolset can be set with t
36573657

36583658
::
36593659

3660-
cmake -G"Visual Studio 15 2017" -T LLVM ..
3660+
cmake -G"Visual Studio 16 2019" -T LLVM ..
36613661

36623662
When using CMake with the Ninja generator, set the ``CMAKE_C_COMPILER`` and
36633663
``CMAKE_CXX_COMPILER`` variables to clang-cl:

lldb/docs/resources/build.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ LLDB must use debug python as well.
8686
Windows
8787
*******
8888

89-
* Visual Studio 2017.
89+
* Visual Studio 2019.
9090
* The latest Windows SDK.
9191
* The Active Template Library (ATL).
9292
* `GnuWin32 <http://gnuwin32.sourceforge.net/>`_ for CoreUtils and Make.
@@ -121,8 +121,8 @@ process. They only need to be performed once.
121121

122122
::
123123

124-
> regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\DIA SDK\bin\msdia140.dll"
125-
> regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\DIA SDK\bin\amd64\msdia140.dll"
124+
> regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\DIA SDK\bin\msdia140.dll"
125+
> regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\DIA SDK\bin\amd64\msdia140.dll"
126126

127127
Any command prompt from which you build LLDB should have a valid Visual Studio
128128
environment setup. This means you should open an appropriate `Developer Command
@@ -300,7 +300,7 @@ project in another directory.
300300

301301
::
302302

303-
$ cmake -G "Visual Studio 15 2017 Win64" -Thost=x64 <cmake variables> <path to root of llvm source tree>
303+
$ cmake -G "Visual Studio 16 2019" -A x64 -T host=x64 <cmake variables> <path to root of llvm source tree>
304304

305305
Then you can open the .sln file in Visual Studio, set lldb as the startup
306306
project, and use F5 to run it. You need only edit the project settings to set

lldb/docs/resources/test.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ A quick guide to getting started with PTVS is as follows:
599599
#. Right click the Project node in Solution Explorer.
600600
#. In the General tab, Make sure Python 3.5 Debug is the selected Interpreter.
601601
#. In Debug/Search Paths, enter the path to your ninja/lib/site-packages directory.
602-
#. In Debug/Environment Variables, enter ``VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\``.
602+
#. In Debug/Environment Variables, enter ``VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\``.
603603
#. If you want to enabled mixed mode debugging, check Enable native code debugging (this slows down debugging, so enable it only on an as-needed basis.)
604604
#. Set the command line for the test suite to run.
605605
#. Right click the project in solution explorer and choose the Debug tab.

llvm/cmake/modules/CheckCompilerVersion.cmake

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ set(APPLECLANG_MIN 6.0)
1212
set(APPLECLANG_SOFT_ERROR 6.0)
1313

1414
# https://en.wikipedia.org/wiki/Microsoft_Visual_C#Internal_version_numbering
15-
# _MSC_VER == 1914 MSVC++ 14.14 (Visual Studio 2017 version 15.4)
16-
set(MSVC_MIN 19.14)
17-
set(MSVC_SOFT_ERROR 19.14)
15+
# _MSC_VER == 1920 MSVC++ 14.20 Visual Studio 2019 Version 16.0
16+
# _MSC_VER == 1927 MSVC++ 14.27 Visual Studio 2019 Version 16.7
17+
set(MSVC_MIN 19.20)
18+
set(MSVC_SOFT_ERROR 19.27)
1819

1920
# Map the above GCC versions to dates: https://gcc.gnu.org/develop.html#timeline
2021
set(GCC_MIN_DATE 20150422)

llvm/docs/CMake.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,7 @@ enabled sub-projects. Nearly all of these variable names begin with
469469
creation of certain convenience build system targets, such as the various
470470
``install-*`` and ``check-*`` targets, since IDEs don't always deal well with
471471
a large number of targets. This is usually autodetected, but it can be
472-
configured manually to explicitly control the generation of those targets. One
473-
scenario where a manual override may be desirable is when using Visual Studio
474-
2017's CMake integration, which would not be detected as an IDE otherwise.
472+
configured manually to explicitly control the generation of those targets.
475473

476474
**LLVM_ENABLE_LIBCXX**:BOOL
477475
If the host compiler and linker supports the stdlib flag, -stdlib=libc++ is

llvm/docs/GettingStarted.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ popular host toolchains for specific minimum versions in our build systems:
238238
* Clang 3.5
239239
* Apple Clang 6.0
240240
* GCC 5.1
241-
* Visual Studio 2017
241+
* Visual Studio 2019
242242

243243
Anything older than these toolchains *may* work, but will require forcing the
244244
build system with a special option and is not really a supported host platform.
@@ -273,8 +273,8 @@ Getting a Modern Host C++ Toolchain
273273
This section mostly applies to Linux and older BSDs. On macOS, you should
274274
have a sufficiently modern Xcode, or you will likely need to upgrade until you
275275
do. Windows does not have a "system compiler", so you must install either Visual
276-
Studio 2017 or a recent version of mingw64. FreeBSD 10.0 and newer have a modern
277-
Clang as the system compiler.
276+
Studio 2019 (or later), or a recent version of mingw64. FreeBSD 10.0 and newer
277+
have a modern Clang as the system compiler.
278278

279279
However, some Linux distributions and some other or older BSDs sometimes have
280280
extremely old versions of GCC. These steps attempt to help you upgrade you

llvm/docs/GettingStartedVS.rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and software you will need.
3636

3737
Hardware
3838
--------
39-
Any system that can adequately run Visual Studio 2017 is fine. The LLVM
39+
Any system that can adequately run Visual Studio 2019 is fine. The LLVM
4040
source tree including the git index consumes approximately 3GB.
4141
Object files, libraries and executables consume approximately 5GB in
4242
Release mode and much more in Debug mode. SSD drive and >16GB RAM are
@@ -45,13 +45,14 @@ recommended.
4545

4646
Software
4747
--------
48-
You will need `Visual Studio <https://visualstudio.microsoft.com/>`_ 2017 or
49-
higher, with the latest Update installed. Visual Studio Community Edition
48+
You will need `Visual Studio <https://visualstudio.microsoft.com/>`_ 2019 or
49+
later, with the latest Update installed. Visual Studio Community Edition
5050
suffices.
5151

5252
You will also need the `CMake <http://www.cmake.org/>`_ build system since it
5353
generates the project files you will use to build with. CMake is bundled with
54-
Visual Studio 2019 so separate installation is not required.
54+
Visual Studio 2019 so separate installation is not required. If you do install
55+
CMake separately, Visual Studio 2022 will require CMake Version 3.21 or later.
5556

5657
If you would like to run the LLVM tests you will need `Python
5758
<http://www.python.org/>`_. Version 3.6 and newer are known to work. You can

llvm/docs/ReleaseNotes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Changes to the LLVM IR
6565
Changes to building LLVM
6666
------------------------
6767

68-
* ...
68+
* Building LLVM with Visual Studio now requires version 2019 or later.
6969

7070
Changes to TableGen
7171
-------------------

llvm/include/llvm/Support/Compiler.h

+13-8
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,21 @@
7777
/// * 1916: VS2017, version 15.9
7878
/// * 1920: VS2019, version 16.0
7979
/// * 1921: VS2019, version 16.1
80+
/// * 1922: VS2019, version 16.2
81+
/// * 1923: VS2019, version 16.3
82+
/// * 1924: VS2019, version 16.4
83+
/// * 1925: VS2019, version 16.5
84+
/// * 1926: VS2019, version 16.6
85+
/// * 1927: VS2019, version 16.7
86+
/// * 1928: VS2019, version 16.8 + 16.9
87+
/// * 1929: VS2019, version 16.10 + 16.11
88+
/// * 1930: VS2022, version 17.0
8089
#ifdef _MSC_VER
8190
#define LLVM_MSC_PREREQ(version) (_MSC_VER >= (version))
8291

83-
// We require at least MSVC 2017.
84-
#if !LLVM_MSC_PREREQ(1910)
85-
#error LLVM requires at least MSVC 2017.
92+
// We require at least VS 2019.
93+
#if !LLVM_MSC_PREREQ(1920)
94+
#error LLVM requires at least VS 2019.
8695
#endif
8796

8897
#else
@@ -94,12 +103,8 @@
94103
/// Sadly, this is separate from just rvalue reference support because GCC
95104
/// and MSVC implemented this later than everything else. This appears to be
96105
/// corrected in MSVC 2019 but not MSVC 2017.
97-
#if __has_feature(cxx_rvalue_references) || defined(__GNUC__) || \
98-
LLVM_MSC_PREREQ(1920)
106+
/// FIXME: Remove LLVM_HAS_RVALUE_REFERENCE_THIS macro
99107
#define LLVM_HAS_RVALUE_REFERENCE_THIS 1
100-
#else
101-
#define LLVM_HAS_RVALUE_REFERENCE_THIS 0
102-
#endif
103108

104109
/// Expands to '&' if ref-qualifiers for *this are supported.
105110
///

0 commit comments

Comments
 (0)