-
Notifications
You must be signed in to change notification settings - Fork 1.6k
VS 2019 16.9 Preview 1 toolset update #1451
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
StephanTLavavej
merged 19 commits into
microsoft:master
from
StephanTLavavej:vs_2019_16.9_p1
Nov 13, 2020
Merged
VS 2019 16.9 Preview 1 toolset update #1451
StephanTLavavej
merged 19 commits into
microsoft:master
from
StephanTLavavej:vs_2019_16.9_p1
Nov 13, 2020
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CaseyCarter
approved these changes
Nov 12, 2020
CaseyCarter
approved these changes
Nov 12, 2020
CaseyCarter
approved these changes
Nov 12, 2020
cbezault
approved these changes
Nov 12, 2020
Member
Author
|
(I'm trying to get the internal test suite to pass, hence the back-and-forth commits) |
This was referenced Nov 13, 2020
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This updates the toolset to VS 2019 16.9 Preview 1 and removes a bunch of compiler bug workarounds.
.github/ISSUE_TEMPLATE/cxx23-feature.mdCMakeLists.txtREADME.mdazure-devops/create-vmss.ps1$TotalProgressand add an initial step toSet-AzContext -SubscriptionName CPP_STL_GitHub. (For unknown reasons, I now have access to a bunch of subscriptions, andConnect-AzAccountselects the first one, which isn'tCPP_STL_GitHub. ThisSet-AzContextstep allows the following steps to work, and should have no harmful effects if a maintainer has access to onlyCPP_STL_GitHub.)AdminUserand$AdminPW. We don't need these credentials.azure-devops/provision-image.ps1azure-pipelines.ymlstl/inc/filesystemstl/inc/memory_resourcestl/inc/tuplestl/inc/utilitypair's piecewise constructor with Standard Library Header Units, by defining that constructor in<utility>instead of<tuple>. To do so, we need to define an internal_Tuple_gethelper for modifiable rvalues only. This mitigates the throughput impact for<utility>, and should avoid disrupting conformance tests that are overly sensitive to the order ofgetdeclarations. As a bonus, we can now definepair's constructors entirely within the class definition.stl/inc/yvals_core.h__cpp_impl_coroutineto its C++20 value, so we don't need the197000Lworkaround. (We still need#ifdef __cpp_impl_coroutinefor Clang.)tests/libcxx/expected_results.txtallocator.members/allocate.pass.cppnow passes, so mark it asFAILfor Clang only. (No change toskipped_tests.txt.)tests/std/tests/P0433R2_deduction_guides/test.cpptests/std/tests/P0896R4_ranges_range_machinery/test.cppref_viewso we cantest_borrowed_rangehere.tests/std/tests/P0896R4_views_common/test.cpptests/std/tests/P0896R4_views_drop_while/test.cpptests/std/tests/P0896R4_views_filter/test.cpptests/std/tests/P0896R4_views_reverse/test.cpptests/std/tests/P0896R4_views_take_while/test.cpptests/std/tests/P0896R4_views_transform/test.cpptests/std/tests/P1502R1_standard_library_header_units/test.cpptests/std/tests/VSO_0157762_feature_test_macros/test.compile.pass.cpp__cpp_impl_coroutine197000Lworkaround; seeyvals_core.habove.Note: The
_MSC_VERcheck is not changing, as its value will remain1928for 16.9 (due to running out of one's digits). The difference is detectable through_MSC_FULL_VER, but this check doesn't need to be strict - it merely diagnoses egregious compiler version mismatch.STL/stl/inc/yvals_core.h
Lines 515 to 516 in 9959929