Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions llvm/cmake/modules/CheckCompilerVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ set(APPLECLANG_MIN 10.0)
set(APPLECLANG_SOFT_ERROR 10.0)

# https://en.wikipedia.org/wiki/Microsoft_Visual_C#Internal_version_numbering
# _MSC_VER == 1927 MSVC++ 14.27 Visual Studio 2019 Version 16.7
set(MSVC_MIN 19.27)
set(MSVC_SOFT_ERROR 19.27)
# _MSC_VER == 1928 MSVC++ 19.27 Visual Studio 2019 Version 16.8 + 16.9
set(MSVC_MIN 19.28)
set(MSVC_SOFT_ERROR 19.28)

set(LIBSTDCXX_MIN 7)
set(LIBSTDCXX_SOFT_ERROR 7)
Expand Down
2 changes: 1 addition & 1 deletion llvm/docs/GettingStarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ popular host toolchains for specific minimum versions in our build systems:
* Clang 5.0
* Apple Clang 10.0
* GCC 7.4
* Visual Studio 2019 16.7
* Visual Studio 2019 16.8

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.
Expand Down
2 changes: 2 additions & 0 deletions llvm/docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ Changes to LLVM infrastructure
Changes to building LLVM
------------------------

* Raised the minimum MSVC version to Visual Studio 2019 16.8.

Changes to TableGen
-------------------

Expand Down
Loading