Skip to content

Commit 7c0b1c4

Browse files
Toolset update: MSVC Compiler 19.50.35720, update llvm-project (#5955)
1 parent b607409 commit 7c0b1c4

6 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/update-status-chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout gh-pages
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
ref: gh-pages
2020
- name: Setup Node.js

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ cmake_minimum_required(VERSION 4.1.1)
66
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
77
project(msvc_standard_libraries LANGUAGES CXX)
88

9-
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "19.50.35719")
10-
message(FATAL_ERROR "The STL must be built with MSVC Compiler 19.50.35719 or later.")
9+
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "19.50.35720")
10+
message(FATAL_ERROR "The STL must be built with MSVC Compiler 19.50.35720 or later.")
1111
endif()
1212

1313
include(CheckCXXSourceCompiles)

azure-devops/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
variables:
77
- name: poolName
8-
value: 'Stl-2025-11-24T1624-x64-Pool'
8+
value: 'Stl-2025-12-09T1433-x64-Pool'
99
readonly: true
1010
- name: arm64PoolName
11-
value: 'Stl-2025-11-24T1624-arm64-Pool'
11+
value: 'Stl-2025-12-09T1433-arm64-Pool'
1212
readonly: true
1313
- name: poolDemands
1414
value: 'EnableSpotVM -equals false'

azure-devops/create-1es-hosted-pool.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if ($Arch -ieq 'x64') {
3131
} else {
3232
# CPP_STL_GitHub has quota for 672 cores (21 VMs) in westcentralus, not currently used.
3333
$AvailableLocations = @('eastus2', 'northeurope') # Locations where CPP_STL_GitHub has quota for 1024 cores (32 VMs).
34-
$AvailableLocationIdx = 2 # Increment for each new pool, to cycle through the available locations.
34+
$AvailableLocationIdx = 3 # Increment for each new pool, to cycle through the available locations.
3535
$Location = $AvailableLocations[$AvailableLocationIdx % $AvailableLocations.Length]
3636
$VMSize = 'Standard_D32ps_v6'
3737
$PoolSize = 32

llvm-project

Submodule llvm-project updated 7376 files

tests/libcxx/expected_results.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,6 +1001,9 @@ std/containers/sequences/vector/trivial_relocation.pass.cpp:1 FAIL
10011001
# Not analyzed, likely bogus test. constexpr fails with "vector iterators incompatible".
10021002
std/ranges/range.adaptors/range.join.with/range.join.with.iterator/ctor.default.pass.cpp FAIL
10031003

1004+
# Test uses std::to_string() without including <string>.
1005+
std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp FAIL
1006+
10041007

10051008
# *** LIKELY STL BUGS ***
10061009
# Not analyzed, likely STL bugs. Various assertions.

0 commit comments

Comments
 (0)