Skip to content

Commit e19bb1a

Browse files
VS 2019 16.9 Preview 4 toolset update (#1636)
1 parent 47cd703 commit e19bb1a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Just try to follow these rules, so we can spend more time fixing bugs and implem
143143
The STL uses boost-math headers to provide P0226R1 Mathematical Special Functions. We recommend using [vcpkg][] to
144144
acquire this dependency.
145145

146-
1. Install Visual Studio 2019 16.9 Preview 3 or later.
146+
1. Install Visual Studio 2019 16.9 Preview 4 or later.
147147
* We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
148148
This will ensure that you're using supported versions of CMake and Ninja.
149149
* Otherwise, install [CMake][] 3.19 or later, and [Ninja][] 1.10.2 or later.
@@ -158,7 +158,7 @@ acquire this dependency.
158158

159159
# How To Build With A Native Tools Command Prompt
160160

161-
1. Install Visual Studio 2019 16.9 Preview 3 or later.
161+
1. Install Visual Studio 2019 16.9 Preview 4 or later.
162162
* We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
163163
This will ensure that you're using supported versions of CMake and Ninja.
164164
* Otherwise, install [CMake][] 3.19 or later, and [Ninja][] 1.10.2 or later.

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variables:
88
buildOutputLocation: 'D:\build'
99
vcpkgLocation: '$(Build.SourcesDirectory)/vcpkg'
1010

11-
pool: 'StlBuild-2021-01-20-2'
11+
pool: 'StlBuild-2021-02-09'
1212

1313
stages:
1414
- stage: Code_Format
@@ -69,7 +69,7 @@ stages:
6969
vsDevCmdArch: x86
7070

7171
- stage: Build_And_Test_x64
72-
dependsOn: Code_Format
72+
dependsOn: Build_And_Test_x86
7373
displayName: 'Build and Test'
7474
jobs:
7575
- template: azure-devops/native-build-test.yml
@@ -78,7 +78,7 @@ stages:
7878
vsDevCmdArch: amd64
7979

8080
- stage: Build_ARM
81-
dependsOn: Code_Format
81+
dependsOn: Build_And_Test_x86
8282
displayName: 'Build'
8383
jobs:
8484
- template: azure-devops/cross-build.yml
@@ -87,7 +87,7 @@ stages:
8787
vsDevCmdArch: arm
8888

8989
- stage: Build_ARM64
90-
dependsOn: Code_Format
90+
dependsOn: Build_And_Test_x86
9191
displayName: 'Build'
9292
jobs:
9393
- template: azure-devops/cross-build.yml

tools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Microsoft Corporation.
22
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
cmake_minimum_required(VERSION 3.15)
4+
cmake_minimum_required(VERSION 3.19)
55
project(msvc_standard_libraries_tools LANGUAGES CXX)
66

77
set(CMAKE_CXX_STANDARD 20)

0 commit comments

Comments
 (0)