aboutsummaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2023-05-05 15:53:48 -0400
committerBoringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-05-08 21:46:15 +0000
commit2aae3f58b42e75690f28853f712a2e204857b7f6 (patch)
treefc9e64c9a85c3fae91a849f571d13c41e25192eb /BUILDING.md
parenta972b78d1b11009cd07852fb4be2cc938489e031 (diff)
downloadboringssl-2aae3f58b42e75690f28853f712a2e204857b7f6.zip
boringssl-2aae3f58b42e75690f28853f712a2e204857b7f6.tar.gz
boringssl-2aae3f58b42e75690f28853f712a2e204857b7f6.tar.bz2
Bump the minimum supported MSVC version to VS2019
This aligns with https://github.com/google/oss-policies-info/pull/8 and https://github.com/grpc/grpc/pull/32614. VS2019 adds a C11 mode, which is useful for us, because it means stdalign.h works correctly. Also bump the minimum Windows SDK to https://devblogs.microsoft.com/cppblog/c11-and-c17-standard-support-arriving-in-msvc/. If you have a new MSVC, CMake will enable C11 mode by default. But if C11 mode is enabled but your Windows SDK is too old, things break. After this change, the CI will include some redundant configurations. All the VS2017 configurations will start testing on VS2019, so the VS2019-specific configurations won't do anything. I'll follow this up with a change to bump those to VS2022, where we're currently missing coverage. Update-Note: BoringSSL now requires VS2019 or later and no longer supports VS2017. VS2017 has been past its "mainstream end date" for over a year now, per https://learn.microsoft.com/en-us/lifecycle/products/visual-studio-2017 Change-Id: I3f359e8ea7c9428ddaa9fcc4ffead2ef903398be Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/59665 Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: David Benjamin <davidben@google.com>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILDING.md b/BUILDING.md
index 4dcd0f4..f915d85 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -32,9 +32,9 @@ most recent stable version of each tool.
* C and C++ compilers with C++14 support are required. If using a C compiler
other than MSVC, C11 support is also requried. On Windows, MSVC from
- Visual Studio 2017 or later with Platform SDK 8.1 or later are supported,
- but newer versions are recommended. Recent versions of GCC (6.1+) and Clang
- should work on non-Windows platforms, and maybe on Windows too.
+ Visual Studio 2019 or later with Windows 10 SDK 2104 or later are supported,
+ but using the latest versions is recommended. Recent versions of GCC (6.1+)
+ and Clang should work on non-Windows platforms, and maybe on Windows too.
* The most recent stable version of [Go](https://golang.org/dl/) is required.
Note Go is exempt from the five year support window. If not found by CMake,