STL version shipped with MSVC build tools #2407
-
This repo dosen't have any tags, is there any information about which commit is shipped with different build tools? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@barcharcraz notes that although MSVC and VS's sources are stored in internal git repos, their commits aren't related to commits in this repo (the histories are totally different). However, the contents of the STL's subdirectory in the MSVC repo do closely correspond to commits in this repo - we attempt to keep them binary-identical at all times with synchronized updates. Occasionally we do need to backport bugfixes to VS servicing updates "out of sequence" (whereas this repo's history is always linear), but the correspondence is generally quite close. (With the upcoming exception of a major backport to 16.11.x for C++20 ABI stabilization.) We haven't created tags/releases here yet, because I still need to finalize the (ancient) 16.5 changelog which is currently incomplete. However, we are maintaining a list of which microsoft/STL commits closely correspond to the content of VS releases, see #386 for commit hashes/links. Hope this helps! |
Beta Was this translation helpful? Give feedback.
@barcharcraz notes that although MSVC and VS's sources are stored in internal git repos, their commits aren't related to commits in this repo (the histories are totally different). However, the contents of the STL's subdirectory in the MSVC repo do closely correspond to commits in this repo - we attempt to keep them binary-identical at all times with synchronized updates. Occasionally we do need to backport bugfixes to VS servicing updates "out of sequence" (whereas this repo's history is always linear), but the correspondence is generally quite close. (With the upcoming exception of a major backport to 16.11.x for C++20 ABI stabilization.)
We haven't created tags/releases here yet, becau…