Browse Source

Split libcxx on msvc/other

mikhnenko 1 year ago
parent
commit
f5b051f5e0

+ 434 - 0
build/sysincl/stl-to-libcxxmsvc.yml

@@ -0,0 +1,434 @@
+# libc & stl common headers should be resolved to either
+# * system libc   (e.g. nothing in our repo)
+# * system libc++ (e.g. nothing in our repo)
+# * libcxx
+# * musl
+# or some combination of them depending on the build flags.
+
+# We want musl to resolve itself without these sysincls, but its test must have them
+# When these resolved in pure C modules, their own includes should be also resolved via sysincl (the list at the bottom)
+# If you add something here, please also add include to it into build/sysincl/check/cxx.c for proper testing
+- source_filter: "^(?!(contrib/libs/musl|contrib/tools/yasm)).*|^contrib/libs/musl/tests"
+  includes:
+  - complex.h:    contrib/libs/cxxsupp/libcxxmsvc/include/complex.h
+  - ctype.h:      contrib/libs/cxxsupp/libcxxmsvc/include/ctype.h
+  - errno.h:      contrib/libs/cxxsupp/libcxxmsvc/include/errno.h
+  - fenv.h:       contrib/libs/cxxsupp/libcxxmsvc/include/fenv.h
+  - float.h:      contrib/libs/cxxsupp/libcxxmsvc/include/float.h
+  - inttypes.h:   contrib/libs/cxxsupp/libcxxmsvc/include/inttypes.h
+  - limits.h:     contrib/libs/cxxsupp/libcxxmsvc/include/limits.h
+  - locale.h:     contrib/libs/cxxsupp/libcxxmsvc/include/locale.h
+  - math.h:       contrib/libs/cxxsupp/libcxxmsvc/include/math.h
+  - stdatomic.h:  contrib/libs/cxxsupp/libcxxmsvc/include/stdatomic.h
+  - setjmp.h:     contrib/libs/cxxsupp/libcxxmsvc/include/setjmp.h
+  - stdbool.h:    contrib/libs/cxxsupp/libcxxmsvc/include/stdbool.h
+  - stddef.h:     contrib/libs/cxxsupp/libcxxmsvc/include/stddef.h
+  - stdint.h:     contrib/libs/cxxsupp/libcxxmsvc/include/stdint.h
+  - stdio.h:      contrib/libs/cxxsupp/libcxxmsvc/include/stdio.h
+  - stdlib.h:     contrib/libs/cxxsupp/libcxxmsvc/include/stdlib.h
+  - string.h:     contrib/libs/cxxsupp/libcxxmsvc/include/string.h
+  - tgmath.h:     contrib/libs/cxxsupp/libcxxmsvc/include/tgmath.h
+  - wchar.h:      contrib/libs/cxxsupp/libcxxmsvc/include/wchar.h
+  - wctype.h:     contrib/libs/cxxsupp/libcxxmsvc/include/wctype.h
+
+- includes:
+  - unwind.h:     contrib/libs/cxxsupp/libcxxmsvc/include/unwind.h
+
+- includes:
+  - algorithm:                 contrib/libs/cxxsupp/libcxxmsvc/include/algorithm
+  - any:                       contrib/libs/cxxsupp/libcxxmsvc/include/any
+  - array:                     contrib/libs/cxxsupp/libcxxmsvc/include/array
+  - atomic:                    contrib/libs/cxxsupp/libcxxmsvc/include/atomic
+  - bit:                       contrib/libs/cxxsupp/libcxxmsvc/include/bit
+  - bitset:                    contrib/libs/cxxsupp/libcxxmsvc/include/bitset
+  - cassert:                   contrib/libs/cxxsupp/libcxxmsvc/include/cassert
+  - ccomplex:                  contrib/libs/cxxsupp/libcxxmsvc/include/ccomplex
+  - cctype:                    contrib/libs/cxxsupp/libcxxmsvc/include/cctype
+  - cerrno:                    contrib/libs/cxxsupp/libcxxmsvc/include/cerrno
+  - cfenv:                     contrib/libs/cxxsupp/libcxxmsvc/include/cfenv
+  - cfloat:                    contrib/libs/cxxsupp/libcxxmsvc/include/cfloat
+  - charconv:                  contrib/libs/cxxsupp/libcxxmsvc/include/charconv
+  - chrono:                    contrib/libs/cxxsupp/libcxxmsvc/include/chrono
+  - cinttypes:                 contrib/libs/cxxsupp/libcxxmsvc/include/cinttypes
+  - ciso646:                   contrib/libs/cxxsupp/libcxxmsvc/include/ciso646
+  - climits:                   contrib/libs/cxxsupp/libcxxmsvc/include/climits
+  - clocale:                   contrib/libs/cxxsupp/libcxxmsvc/include/clocale
+  - cmath:                     contrib/libs/cxxsupp/libcxxmsvc/include/cmath
+  - codecvt:                   contrib/libs/cxxsupp/libcxxmsvc/include/codecvt
+  - compare:                   contrib/libs/cxxsupp/libcxxmsvc/include/compare
+  - complex:                   contrib/libs/cxxsupp/libcxxmsvc/include/complex
+  - concepts:                  contrib/libs/cxxsupp/libcxxmsvc/include/concepts
+  - condition_variable:        contrib/libs/cxxsupp/libcxxmsvc/include/condition_variable
+  - coroutine:                 contrib/libs/cxxsupp/libcxxmsvc/include/coroutine
+  - csetjmp:                   contrib/libs/cxxsupp/libcxxmsvc/include/csetjmp
+  - csignal:                   contrib/libs/cxxsupp/libcxxmsvc/include/csignal
+  - cstdarg:                   contrib/libs/cxxsupp/libcxxmsvc/include/cstdarg
+  - cstdbool:                  contrib/libs/cxxsupp/libcxxmsvc/include/cstdbool
+  - cstddef:                   contrib/libs/cxxsupp/libcxxmsvc/include/cstddef
+  - cstdint:                   contrib/libs/cxxsupp/libcxxmsvc/include/cstdint
+  - cstdio:                    contrib/libs/cxxsupp/libcxxmsvc/include/cstdio
+  - cstdlib:                   contrib/libs/cxxsupp/libcxxmsvc/include/cstdlib
+  - cstring:                   contrib/libs/cxxsupp/libcxxmsvc/include/cstring
+  - ctgmath:                   contrib/libs/cxxsupp/libcxxmsvc/include/ctgmath
+  - ctime:                     contrib/libs/cxxsupp/libcxxmsvc/include/ctime
+  - cwchar:                    contrib/libs/cxxsupp/libcxxmsvc/include/cwchar
+  - cwctype:                   contrib/libs/cxxsupp/libcxxmsvc/include/cwctype
+  - deque:                     contrib/libs/cxxsupp/libcxxmsvc/include/deque
+  - exception:                 contrib/libs/cxxsupp/libcxxmsvc/include/exception
+  - filesystem:                contrib/libs/cxxsupp/libcxxmsvc/include/filesystem
+  - forward_list:              contrib/libs/cxxsupp/libcxxmsvc/include/forward_list
+  - fstream:                   contrib/libs/cxxsupp/libcxxmsvc/include/fstream
+  - functional:                contrib/libs/cxxsupp/libcxxmsvc/include/functional
+  - future:                    contrib/libs/cxxsupp/libcxxmsvc/include/future
+  - initializer_list:          contrib/libs/cxxsupp/libcxxmsvc/include/initializer_list
+  - iomanip:                   contrib/libs/cxxsupp/libcxxmsvc/include/iomanip
+  - ios:                       contrib/libs/cxxsupp/libcxxmsvc/include/ios
+  - iosfwd:                    contrib/libs/cxxsupp/libcxxmsvc/include/iosfwd
+  - iostream:                  contrib/libs/cxxsupp/libcxxmsvc/include/iostream
+  - istream:                   contrib/libs/cxxsupp/libcxxmsvc/include/istream
+  - iterator:                  contrib/libs/cxxsupp/libcxxmsvc/include/iterator
+  - limits:                    contrib/libs/cxxsupp/libcxxmsvc/include/limits
+  - list:                      contrib/libs/cxxsupp/libcxxmsvc/include/list
+  - locale:                    contrib/libs/cxxsupp/libcxxmsvc/include/locale
+  - map:                       contrib/libs/cxxsupp/libcxxmsvc/include/map
+  - memory:                    contrib/libs/cxxsupp/libcxxmsvc/include/memory
+  - mutex:                     contrib/libs/cxxsupp/libcxxmsvc/include/mutex
+  - new:                       contrib/libs/cxxsupp/libcxxmsvc/include/new
+  - numbers:                   contrib/libs/cxxsupp/libcxxmsvc/include/numbers
+  - numeric:                   contrib/libs/cxxsupp/libcxxmsvc/include/numeric
+  - optional:                  contrib/libs/cxxsupp/libcxxmsvc/include/optional
+  - ostream:                   contrib/libs/cxxsupp/libcxxmsvc/include/ostream
+  - queue:                     contrib/libs/cxxsupp/libcxxmsvc/include/queue
+  - random:                    contrib/libs/cxxsupp/libcxxmsvc/include/random
+  - ranges:                    contrib/libs/cxxsupp/libcxxmsvc/include/ranges
+  - ratio:                     contrib/libs/cxxsupp/libcxxmsvc/include/ratio
+  - regex:                     contrib/libs/cxxsupp/libcxxmsvc/include/regex
+  - scoped_allocator:          contrib/libs/cxxsupp/libcxxmsvc/include/scoped_allocator
+  - set:                       contrib/libs/cxxsupp/libcxxmsvc/include/set
+  - shared_mutex:              contrib/libs/cxxsupp/libcxxmsvc/include/shared_mutex
+  - span:                      contrib/libs/cxxsupp/libcxxmsvc/include/span
+  - sstream:                   contrib/libs/cxxsupp/libcxxmsvc/include/sstream
+  - stack:                     contrib/libs/cxxsupp/libcxxmsvc/include/stack
+  - stdexcept:                 contrib/libs/cxxsupp/libcxxmsvc/include/stdexcept
+  - stlfwd:                    contrib/libs/cxxsupp/libcxxmsvc/include/stlfwd
+  - streambuf:                 contrib/libs/cxxsupp/libcxxmsvc/include/streambuf
+  - string:                    contrib/libs/cxxsupp/libcxxmsvc/include/string
+  - string_view:               contrib/libs/cxxsupp/libcxxmsvc/include/string_view
+  - strstream:                 contrib/libs/cxxsupp/libcxxmsvc/include/strstream
+  - system_error:              contrib/libs/cxxsupp/libcxxmsvc/include/system_error
+  - thread:                    contrib/libs/cxxsupp/libcxxmsvc/include/thread
+  - tuple:                     contrib/libs/cxxsupp/libcxxmsvc/include/tuple
+  - typeindex:                 contrib/libs/cxxsupp/libcxxmsvc/include/typeindex
+  - typeinfo:                  contrib/libs/cxxsupp/libcxxmsvc/include/typeinfo
+  - type_traits:               contrib/libs/cxxsupp/libcxxmsvc/include/type_traits
+  - unordered_map:             contrib/libs/cxxsupp/libcxxmsvc/include/unordered_map
+  - unordered_set:             contrib/libs/cxxsupp/libcxxmsvc/include/unordered_set
+  - use_ansi.h:                contrib/libs/cxxsupp/libcxxmsvc/include/use_ansi.h
+  - utility:                   contrib/libs/cxxsupp/libcxxmsvc/include/utility
+  - valarray:                  contrib/libs/cxxsupp/libcxxmsvc/include/valarray
+  - variant:                   contrib/libs/cxxsupp/libcxxmsvc/include/variant
+  - vector:                    contrib/libs/cxxsupp/libcxxmsvc/include/vector
+  - version:                   contrib/libs/cxxsupp/libcxxmsvc/include/version
+
+# Though these are headers provided by libcxx, we do not want to allow them to be included.
+# We are using non-existent filename to generate error instead, as there is no specific syntax for this case.
+- includes:
+  # TODO: Forbid including <experimental/coroutine> upon migration to clang14
+  - experimental/coroutine:    contrib/libs/cxxsupp/libcxxmsvc/include/experimental/coroutine
+
+# This includes all headers needed to resolve includes in c-headers from libcxx listed above
+- includes:
+  - __assert:                                     contrib/libs/cxxsupp/libcxxmsvc/include/__assert
+  - __availability:                               contrib/libs/cxxsupp/libcxxmsvc/include/__availability
+  - __bsd_locale_defaults.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__bsd_locale_defaults.h
+  - __bsd_locale_fallbacks.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__bsd_locale_fallbacks.h
+  - __locale:                                     contrib/libs/cxxsupp/libcxxmsvc/include/__locale
+  - __bit_reference:                              contrib/libs/cxxsupp/libcxxmsvc/include/__bit_reference
+  - __bits:                                       contrib/libs/cxxsupp/libcxxmsvc/include/__bits
+  - __config:                                     contrib/libs/cxxsupp/libcxxmsvc/include/__config
+  - __debug:                                      contrib/libs/cxxsupp/libcxxmsvc/include/__debug
+  - __errc:                                       contrib/libs/cxxsupp/libcxxmsvc/include/__errc
+  - __locale:                                     contrib/libs/cxxsupp/libcxxmsvc/include/__locale
+  - __mbstate_t.h:                                contrib/libs/cxxsupp/libcxxmsvc/include/__mbstate_t.h
+  - __mutex_base:                                 contrib/libs/cxxsupp/libcxxmsvc/include/__mutex_base
+  - __string:                                     contrib/libs/cxxsupp/libcxxmsvc/include/__string
+  - __threading_support:                          contrib/libs/cxxsupp/libcxxmsvc/include/__threading_support
+  - __tuple:                                      contrib/libs/cxxsupp/libcxxmsvc/include/__tuple
+  - __undef_macros:                               contrib/libs/cxxsupp/libcxxmsvc/include/__undef_macros
+  - __wrappers_config:                            contrib/libs/cxxsupp/libcxxmsvc/include/__wrappers_config
+  - __algorithm/adjacent_find.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/adjacent_find.h
+  - __algorithm/all_of.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/all_of.h
+  - __algorithm/any_of.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/any_of.h
+  - __algorithm/binary_search.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/binary_search.h
+  - __algorithm/clamp.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/clamp.h
+  - __algorithm/comp.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/comp.h
+  - __algorithm/comp_ref_type.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/comp_ref_type.h
+  - __algorithm/copy.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/copy.h
+  - __algorithm/copy_backward.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/copy_backward.h
+  - __algorithm/copy_if.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/copy_if.h
+  - __algorithm/copy_n.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/copy_n.h
+  - __algorithm/count.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/count.h
+  - __algorithm/count_if.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/count_if.h
+  - __algorithm/equal.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/equal.h
+  - __algorithm/equal_range.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/equal_range.h
+  - __algorithm/fill.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/fill.h
+  - __algorithm/fill_n.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/fill_n.h
+  - __algorithm/find.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/find.h
+  - __algorithm/find_end.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/find_end.h
+  - __algorithm/find_first_of.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/find_first_of.h
+  - __algorithm/find_if.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/find_if.h
+  - __algorithm/find_if_not.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/find_if_not.h
+  - __algorithm/for_each.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/for_each.h
+  - __algorithm/for_each_n.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/for_each_n.h
+  - __algorithm/generate.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/generate.h
+  - __algorithm/generate_n.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/generate_n.h
+  - __algorithm/half_positive.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/half_positive.h
+  - __algorithm/in_fun_result.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/in_fun_result.h
+  - __algorithm/in_in_out_result.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/in_in_out_result.h
+  - __algorithm/in_in_result.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/in_in_result.h
+  - __algorithm/in_out_out_result.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/in_out_out_result.h
+  - __algorithm/in_out_result.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/in_out_result.h
+  - __algorithm/includes.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/includes.h
+  - __algorithm/inplace_merge.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/inplace_merge.h
+  - __algorithm/is_heap.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_heap.h
+  - __algorithm/is_heap_until.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_heap_until.h
+  - __algorithm/is_partitioned.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_partitioned.h
+  - __algorithm/is_permutation.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_permutation.h
+  - __algorithm/is_sorted.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_sorted.h
+  - __algorithm/is_sorted_until.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/is_sorted_until.h
+  - __algorithm/iter_swap.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/iter_swap.h
+  - __algorithm/lexicographical_compare.h:        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/lexicographical_compare.h
+  - __algorithm/lower_bound.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/lower_bound.h
+  - __algorithm/make_heap.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/make_heap.h
+  - __algorithm/max.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/max.h
+  - __algorithm/max_element.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/max_element.h
+  - __algorithm/merge.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/merge.h
+  - __algorithm/min.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/min.h
+  - __algorithm/min_element.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/min_element.h
+  - __algorithm/minmax.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/minmax.h
+  - __algorithm/minmax_element.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/minmax_element.h
+  - __algorithm/mismatch.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/mismatch.h
+  - __algorithm/move.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/move.h
+  - __algorithm/move_backward.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/move_backward.h
+  - __algorithm/next_permutation.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/next_permutation.h
+  - __algorithm/none_of.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/none_of.h
+  - __algorithm/nth_element.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/nth_element.h
+  - __algorithm/partial_sort.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/partial_sort.h
+  - __algorithm/partial_sort_copy.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/partial_sort_copy.h
+  - __algorithm/partition.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/partition.h
+  - __algorithm/partition_copy.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/partition_copy.h
+  - __algorithm/partition_point.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/partition_point.h
+  - __algorithm/pop_heap.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/pop_heap.h
+  - __algorithm/prev_permutation.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/prev_permutation.h
+  - __algorithm/push_heap.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/push_heap.h
+  - __algorithm/ranges_min_element.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/ranges_min_element.h
+  - __algorithm/ranges_swap_ranges.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/ranges_swap_ranges.h
+  - __algorithm/remove.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/remove.h
+  - __algorithm/remove_copy.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/remove_copy.h
+  - __algorithm/remove_copy_if.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/remove_copy_if.h
+  - __algorithm/remove_if.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/remove_if.h
+  - __algorithm/replace.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/replace.h
+  - __algorithm/replace_copy.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/replace_copy.h
+  - __algorithm/replace_copy_if.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/replace_copy_if.h
+  - __algorithm/replace_if.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/replace_if.h
+  - __algorithm/reverse.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/reverse.h
+  - __algorithm/reverse_copy.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/reverse_copy.h
+  - __algorithm/rotate.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/rotate.h
+  - __algorithm/rotate_copy.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/rotate_copy.h
+  - __algorithm/sample.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/sample.h
+  - __algorithm/search.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/search.h
+  - __algorithm/search_n.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/search_n.h
+  - __algorithm/set_difference.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/set_difference.h
+  - __algorithm/set_intersection.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/set_intersection.h
+  - __algorithm/set_symmetric_difference.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/set_symmetric_difference.h
+  - __algorithm/set_union.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/set_union.h
+  - __algorithm/shift_left.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/shift_left.h
+  - __algorithm/shift_right.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/shift_right.h
+  - __algorithm/shuffle.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/shuffle.h
+  - __algorithm/sift_down.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/sift_down.h
+  - __algorithm/sort.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/sort.h
+  - __algorithm/sort_heap.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/sort_heap.h
+  - __algorithm/stable_partition.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/stable_partition.h
+  - __algorithm/stable_sort.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/stable_sort.h
+  - __algorithm/swap_ranges.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/swap_ranges.h
+  - __algorithm/transform.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/transform.h
+  - __algorithm/unique.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/unique.h
+  - __algorithm/unique_copy.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/unique_copy.h
+  - __algorithm/unwrap_iter.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/unwrap_iter.h
+  - __algorithm/upper_bound.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/upper_bound.h
+  - __bit/bit_cast.h:                             contrib/libs/cxxsupp/libcxxmsvc/include/__bit/bit_cast.h
+  - __bit/byteswap.h:                             contrib/libs/cxxsupp/libcxxmsvc/include/__bit/byteswap.h
+  - __chrono/calendar.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/calendar.h
+  - __chrono/convert_to_timespec.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/convert_to_timespec.h
+  - __chrono/duration.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/duration.h
+  - __chrono/file_clock.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/file_clock.h
+  - __chrono/high_resolution_clock.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/high_resolution_clock.h
+  - __chrono/steady_clock.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/steady_clock.h
+  - __chrono/system_clock.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/system_clock.h
+  - __chrono/time_point.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__chrono/time_point.h
+  - __compare/common_comparison_category.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__compare/common_comparison_category.h
+  - __compare/compare_partial_order_fallback.h:   contrib/libs/cxxsupp/libcxxmsvc/include/__compare/compare_partial_order_fallback.h
+  - __compare/compare_strong_order_fallback.h:    contrib/libs/cxxsupp/libcxxmsvc/include/__compare/compare_strong_order_fallback.h
+  - __compare/compare_three_way.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__compare/compare_three_way.h
+  - __compare/compare_three_way_result.h:         contrib/libs/cxxsupp/libcxxmsvc/include/__compare/compare_three_way_result.h
+  - __compare/compare_weak_order_fallback.h:      contrib/libs/cxxsupp/libcxxmsvc/include/__compare/compare_weak_order_fallback.h
+  - __compare/is_eq.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__compare/is_eq.h
+  - __compare/ordering.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__compare/ordering.h
+  - __compare/partial_order.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__compare/partial_order.h
+  - __compare/strong_order.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__compare/strong_order.h
+  - __compare/synth_three_way.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__compare/synth_three_way.h
+  - __compare/three_way_comparable.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__compare/three_way_comparable.h
+  - __compare/weak_order.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__compare/weak_order.h
+  - __concepts/arithmetic.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/arithmetic.h
+  - __concepts/assignable.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/assignable.h
+  - __concepts/boolean_testable.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/boolean_testable.h
+  - __concepts/class_or_enum.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/class_or_enum.h
+  - __concepts/common_reference_with.h:           contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/common_reference_with.h
+  - __concepts/common_with.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/common_with.h
+  - __concepts/constructible.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/constructible.h
+  - __concepts/convertible_to.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/convertible_to.h
+  - __concepts/copyable.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/copyable.h
+  - __concepts/derived_from.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/derived_from.h
+  - __concepts/destructible.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/destructible.h
+  - __concepts/different_from.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/different_from.h
+  - __concepts/equality_comparable.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/equality_comparable.h
+  - __concepts/invocable.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/invocable.h
+  - __concepts/movable.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/movable.h
+  - __concepts/predicate.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/predicate.h
+  - __concepts/regular.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/regular.h
+  - __concepts/relation.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/relation.h
+  - __concepts/same_as.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/same_as.h
+  - __concepts/semiregular.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/semiregular.h
+  - __concepts/swappable.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/swappable.h
+  - __concepts/totally_ordered.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__concepts/totally_ordered.h
+  - __functional/binary_function.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__functional/binary_function.h
+  - __functional/binary_negate.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__functional/binary_negate.h
+  - __functional/bind.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__functional/bind.h
+  - __functional/bind_back.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__functional/bind_back.h
+  - __functional/bind_front.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__functional/bind_front.h
+  - __functional/binder1st.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__functional/binder1st.h
+  - __functional/binder2nd.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__functional/binder2nd.h
+  - __functional/compose.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__functional/compose.h
+  - __functional/default_searcher.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__functional/default_searcher.h
+  - __functional/function.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__functional/function.h
+  - __functional/hash.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__functional/hash.h
+  - __functional/identity.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__functional/identity.h
+  - __functional/invoke.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__functional/invoke.h
+  - __functional/mem_fn.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__functional/mem_fn.h
+  - __functional/mem_fun_ref.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__functional/mem_fun_ref.h
+  - __functional/not_fn.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__functional/not_fn.h
+  - __functional/operations.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__functional/operations.h
+  - __functional/perfect_forward.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__functional/perfect_forward.h
+  - __functional/pointer_to_binary_function.h:    contrib/libs/cxxsupp/libcxxmsvc/include/__functional/pointer_to_binary_function.h
+  - __functional/pointer_to_unary_function.h:     contrib/libs/cxxsupp/libcxxmsvc/include/__functional/pointer_to_unary_function.h
+  - __functional/ranges_operations.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__functional/ranges_operations.h
+  - __functional/reference_wrapper.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__functional/reference_wrapper.h
+  - __functional/unary_function.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__functional/unary_function.h
+  - __functional/unary_negate.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__functional/unary_negate.h
+  - __functional/unwrap_ref.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__functional/unwrap_ref.h
+  - __functional/weak_result_type.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__functional/weak_result_type.h
+  - __ios/fpos.h:                                 contrib/libs/cxxsupp/libcxxmsvc/include/__ios/fpos.h
+  - __iterator/access.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/access.h
+  - __iterator/advance.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/advance.h
+  - __iterator/back_insert_iterator.h:            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/back_insert_iterator.h
+  - __iterator/common_iterator.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/common_iterator.h
+  - __iterator/concepts.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/concepts.h
+  - __iterator/counted_iterator.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/counted_iterator.h
+  - __iterator/data.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/data.h
+  - __iterator/default_sentinel.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/default_sentinel.h
+  - __iterator/distance.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/distance.h
+  - __iterator/empty.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/empty.h
+  - __iterator/erase_if_container.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/erase_if_container.h
+  - __iterator/front_insert_iterator.h:           contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/front_insert_iterator.h
+  - __iterator/incrementable_traits.h:            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/incrementable_traits.h
+  - __iterator/indirectly_comparable.h:           contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/indirectly_comparable.h
+  - __iterator/insert_iterator.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/insert_iterator.h
+  - __iterator/istream_iterator.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/istream_iterator.h
+  - __iterator/istreambuf_iterator.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/istreambuf_iterator.h
+  - __iterator/iter_move.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/iter_move.h
+  - __iterator/iter_swap.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/iter_swap.h
+  - __iterator/iterator.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/iterator.h
+  - __iterator/iterator_traits.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/iterator_traits.h
+  - __iterator/mergeable.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/mergeable.h
+  - __iterator/move_iterator.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/move_iterator.h
+  - __iterator/next.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/next.h
+  - __iterator/ostream_iterator.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/ostream_iterator.h
+  - __iterator/ostreambuf_iterator.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/ostreambuf_iterator.h
+  - __iterator/permutable.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/permutable.h
+  - __iterator/prev.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/prev.h
+  - __iterator/projected.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/projected.h
+  - __iterator/readable_traits.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/readable_traits.h
+  - __iterator/reverse_access.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/reverse_access.h
+  - __iterator/reverse_iterator.h:                contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/reverse_iterator.h
+  - __iterator/size.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/size.h
+  - __iterator/sortable.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/sortable.h
+  - __iterator/unreachable_sentinel.h:            contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/unreachable_sentinel.h
+  - __iterator/wrap_iter.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__iterator/wrap_iter.h
+  - __memory/addressof.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__memory/addressof.h
+  - __memory/allocation_guard.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__memory/allocation_guard.h
+  - __memory/allocator.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__memory/allocator.h
+  - __memory/allocator_arg_t.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__memory/allocator_arg_t.h
+  - __memory/allocator_traits.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__memory/allocator_traits.h
+  - __memory/auto_ptr.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__memory/auto_ptr.h
+  - __memory/compressed_pair.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__memory/compressed_pair.h
+  - __memory/concepts.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__memory/concepts.h
+  - __memory/construct_at.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__memory/construct_at.h
+  - __memory/pointer_traits.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__memory/pointer_traits.h
+  - __memory/ranges_construct_at.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__memory/ranges_construct_at.h
+  - __memory/ranges_uninitialized_algorithms.h:   contrib/libs/cxxsupp/libcxxmsvc/include/__memory/ranges_uninitialized_algorithms.h
+  - __memory/raw_storage_iterator.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__memory/raw_storage_iterator.h
+  - __memory/shared_ptr.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__memory/shared_ptr.h
+  - __memory/temporary_buffer.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__memory/temporary_buffer.h
+  - __memory/uninitialized_algorithms.h:          contrib/libs/cxxsupp/libcxxmsvc/include/__memory/uninitialized_algorithms.h
+  - __memory/unique_ptr.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__memory/unique_ptr.h
+  - __memory/uses_allocator.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__memory/uses_allocator.h
+  - __memory/voidify.h:                           contrib/libs/cxxsupp/libcxxmsvc/include/__memory/voidify.h
+  - __random/log2.h:                              contrib/libs/cxxsupp/libcxxmsvc/include/__random/log2.h
+  - __random/uniform_int_distribution.h:          contrib/libs/cxxsupp/libcxxmsvc/include/__random/uniform_int_distribution.h
+  - __ranges/access.h:                            contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/access.h
+  - __ranges/concepts.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/concepts.h
+  - __ranges/dangling.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/dangling.h
+  - __ranges/data.h:                              contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/data.h
+  - __ranges/enable_borrowed_range.h:             contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/enable_borrowed_range.h
+  - __ranges/enable_view.h:                       contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/enable_view.h
+  - __ranges/size.h:                              contrib/libs/cxxsupp/libcxxmsvc/include/__ranges/size.h
+  - __support/android/locale_bionic.h:            contrib/libs/cxxsupp/libcxxmsvc/include/__support/android/locale_bionic.h
+  - __support/fuchsia/xlocale.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__support/fuchsia/xlocale.h
+  - __support/ibm/locale_mgmt_zos.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__support/ibm/locale_mgmt_zos.h
+  - __support/ibm/nanosleep.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__support/ibm/nanosleep.h
+  - __support/ibm/xlocale.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__support/ibm/xlocale.h
+  - __support/musl/xlocale.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__support/musl/xlocale.h
+  - __support/newlib/xlocale.h:                   contrib/libs/cxxsupp/libcxxmsvc/include/__support/newlib/xlocale.h
+  - __support/openbsd/xlocale.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__support/openbsd/xlocale.h
+  - __support/solaris/xlocale.h:                  contrib/libs/cxxsupp/libcxxmsvc/include/__support/solaris/xlocale.h
+  - __support/win32/atomic_win32.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__support/win32/atomic_win32.h
+  - __support/win32/locale_win32.h:               contrib/libs/cxxsupp/libcxxmsvc/include/__support/win32/locale_win32.h
+  - __support/xlocale/__posix_l_fallback.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__posix_l_fallback.h
+  - __support/xlocale/__posix_l_fallback.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__posix_l_fallback.h
+  - __support/xlocale/__strtonum_fallback.h:      contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__strtonum_fallback.h
+  - __support/xlocale/__nop_locale_mgmt.h:        contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__nop_locale_mgmt.h
+  - __support/xlocale/__posix_l_fallback.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__posix_l_fallback.h
+  - __support/xlocale/__strtonum_fallback.h:      contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__strtonum_fallback.h
+  - __support/xlocale/__strtonum_fallback.h:      contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__strtonum_fallback.h
+  - __support/xlocale/__posix_l_fallback.h:       contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__posix_l_fallback.h
+  - __support/xlocale/__strtonum_fallback.h:      contrib/libs/cxxsupp/libcxxmsvc/include/__support/xlocale/__strtonum_fallback.h
+  - __thread/poll_with_backoff.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__thread/poll_with_backoff.h
+  - __thread/timed_backoff_policy.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__thread/timed_backoff_policy.h
+  - __utility/as_const.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__utility/as_const.h
+  - __utility/auto_cast.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__utility/auto_cast.h
+  - __utility/cmp.h:                              contrib/libs/cxxsupp/libcxxmsvc/include/__utility/cmp.h
+  - __utility/declval.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__utility/declval.h
+  - __utility/exchange.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__utility/exchange.h
+  - __utility/forward.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__utility/forward.h
+  - __utility/in_place.h:                         contrib/libs/cxxsupp/libcxxmsvc/include/__utility/in_place.h
+  - __utility/integer_sequence.h:                 contrib/libs/cxxsupp/libcxxmsvc/include/__utility/integer_sequence.h
+  - __utility/move.h:                             contrib/libs/cxxsupp/libcxxmsvc/include/__utility/move.h
+  - __utility/pair.h:                             contrib/libs/cxxsupp/libcxxmsvc/include/__utility/pair.h
+  - __utility/piecewise_construct.h:              contrib/libs/cxxsupp/libcxxmsvc/include/__utility/piecewise_construct.h
+  - __utility/priority_tag.h:                     contrib/libs/cxxsupp/libcxxmsvc/include/__utility/priority_tag.h
+  - __utility/rel_ops.h:                          contrib/libs/cxxsupp/libcxxmsvc/include/__utility/rel_ops.h
+  - __utility/swap.h:                             contrib/libs/cxxsupp/libcxxmsvc/include/__utility/swap.h
+  - __utility/to_underlying.h:                    contrib/libs/cxxsupp/libcxxmsvc/include/__utility/to_underlying.h
+  - __utility/transaction.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__utility/transaction.h
+  - __utility/unreachable.h:                      contrib/libs/cxxsupp/libcxxmsvc/include/__utility/unreachable.h
+  - __variant/monostate.h:                        contrib/libs/cxxsupp/libcxxmsvc/include/__variant/monostate.h

+ 2 - 1
build/ymake.core.conf

@@ -9,7 +9,7 @@
 FAKEID=628318530716
 
 SANDBOX_FAKEID=${FAKEID}.7600000
-CPP_FAKEID=2023-06-06
+CPP_FAKEID=2023-09-19
 GO_FAKEID=11100371
 ANDROID_FAKEID=2023-05-17
 CLANG_TIDY_FAKEID=2023-06-06
@@ -234,6 +234,7 @@ otherwise {
     # line when `ya make ...` is invoked.
     when ($NORUNTIME != "yes") {
         SYSINCL+=build/sysincl/stl-to-libcxx.yml
+        SYSINCL+=build/sysincl/stl-to-libcxxmsvc.yml
         when ($MUSL == "yes") {
             SYSINCL+=build/sysincl/libc-musl-libcxx.yml
         }

+ 2 - 2
contrib/libs/cxxsupp/CMakeLists.windows-x86_64.txt

@@ -6,9 +6,9 @@
 # original buildsystem will not be accepted.
 
 
-add_subdirectory(libcxx)
+add_subdirectory(libcxxmsvc)
 
 add_library(contrib-libs-cxxsupp INTERFACE)
 target_link_libraries(contrib-libs-cxxsupp INTERFACE
-  libs-cxxsupp-libcxx
+  libs-cxxsupp-libcxxmsvc
 )

+ 0 - 2
contrib/libs/cxxsupp/libcxx/CMakeLists.txt

@@ -10,8 +10,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarc
   include(CMakeLists.linux-aarch64.txt)
 elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
   include(CMakeLists.darwin-x86_64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
-  include(CMakeLists.windows-x86_64.txt)
 elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
   include(CMakeLists.linux-x86_64.txt)
 endif()

+ 0 - 75
contrib/libs/cxxsupp/libcxx/CMakeLists.windows-x86_64.txt

@@ -1,75 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(libs-cxxsupp-libcxx)
-target_compile_options(libs-cxxsupp-libcxx PUBLIC
-  -D_LIBCPP_VASPRINTF_DEFINED
-  -D_WCHAR_H_CPLUSPLUS_98_CONFORMANCE_
-)
-target_compile_options(libs-cxxsupp-libcxx PRIVATE
-  -D_LIBCPP_BUILDING_LIBRARY
-  $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything>
-)
-target_include_directories(libs-cxxsupp-libcxx PUBLIC
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/include
-)
-target_include_directories(libs-cxxsupp-libcxx PRIVATE
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src
-)
-target_sources(libs-cxxsupp-libcxx PRIVATE
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/support/win32/locale_win32.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/support/win32/support.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/support/win32/atomic_win32.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/support/win32/new_win32.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/support/win32/thread_win32.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/algorithm.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/any.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/assert.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/atomic.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/barrier.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/bind.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/charconv.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/chrono.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/condition_variable.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/condition_variable_destructor.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/debug.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/exception.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/filesystem/directory_iterator.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/filesystem/operations.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/functional.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/future.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/hash.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/ios.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/ios.instantiations.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/iostream.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/legacy_pointer_safety.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/locale.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/memory.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/mutex.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/mutex_destructor.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/optional.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/random.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/random_shuffle.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/regex.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/ryu/d2fixed.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/ryu/d2s.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/ryu/f2s.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/shared_mutex.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/stdexcept.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/string.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/strstream.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/system_error.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/thread.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/typeinfo.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/utility.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/valarray.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/variant.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/vector.cpp
-  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxx/src/format.cpp
-)

+ 11 - 0
contrib/libs/cxxsupp/libcxxmsvc/CMakeLists.txt

@@ -0,0 +1,11 @@
+
+# This file was generated by the build system used internally in the Yandex monorepo.
+# Only simple modifications are allowed (adding source-files to targets, adding simple properties
+# like target_include_directories). These modifications will be ported to original
+# ya.make files by maintainers. Any complex modifications which can't be ported back to the
+# original buildsystem will not be accepted.
+
+
+if (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
+  include(CMakeLists.windows-x86_64.txt)
+endif()

+ 75 - 0
contrib/libs/cxxsupp/libcxxmsvc/CMakeLists.windows-x86_64.txt

@@ -0,0 +1,75 @@
+
+# This file was generated by the build system used internally in the Yandex monorepo.
+# Only simple modifications are allowed (adding source-files to targets, adding simple properties
+# like target_include_directories). These modifications will be ported to original
+# ya.make files by maintainers. Any complex modifications which can't be ported back to the
+# original buildsystem will not be accepted.
+
+
+
+add_library(libs-cxxsupp-libcxxmsvc)
+target_compile_options(libs-cxxsupp-libcxxmsvc PUBLIC
+  -D_LIBCPP_VASPRINTF_DEFINED
+  -D_WCHAR_H_CPLUSPLUS_98_CONFORMANCE_
+)
+target_compile_options(libs-cxxsupp-libcxxmsvc PRIVATE
+  -D_LIBCPP_BUILDING_LIBRARY
+  $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything>
+)
+target_include_directories(libs-cxxsupp-libcxxmsvc PUBLIC
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/include
+)
+target_include_directories(libs-cxxsupp-libcxxmsvc PRIVATE
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src
+)
+target_sources(libs-cxxsupp-libcxxmsvc PRIVATE
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/support/win32/locale_win32.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/support/win32/support.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/support/win32/atomic_win32.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/support/win32/new_win32.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/support/win32/thread_win32.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/algorithm.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/any.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/assert.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/atomic.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/barrier.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/bind.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/charconv.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/chrono.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/condition_variable.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/condition_variable_destructor.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/debug.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/exception.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/filesystem/directory_iterator.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/filesystem/operations.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/functional.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/future.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/hash.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/ios.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/ios.instantiations.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/iostream.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/legacy_pointer_safety.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/locale.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/memory.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/mutex.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/mutex_destructor.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/optional.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/random.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/random_shuffle.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/regex.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/ryu/d2fixed.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/ryu/d2s.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/ryu/f2s.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/shared_mutex.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/stdexcept.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/string.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/strstream.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/system_error.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/thread.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/typeinfo.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/utility.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/valarray.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/variant.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/vector.cpp
+  ${CMAKE_SOURCE_DIR}/contrib/libs/cxxsupp/libcxxmsvc/src/format.cpp
+)

+ 186 - 0
contrib/libs/cxxsupp/libcxxmsvc/CREDITS.TXT

@@ -0,0 +1,186 @@
+This file is a partial list of people who have contributed to the LLVM/libc++
+project.  If you have contributed a patch or made some other contribution to
+LLVM/libc++, please submit a patch to this file to add yourself, and it will be
+done!
+
+The list is sorted by surname and formatted to allow easy grepping and
+beautification by scripts.  The fields are: name (N), email (E), web-address
+(W), PGP key ID and fingerprint (P), description (D), and snail-mail address
+(S).
+
+N: Saleem Abdulrasool
+E: compnerd@compnerd.org
+D: Minor patches and Linux fixes.
+
+N: Ulf Adams
+D: Invented the Ryu and Ryu Printf algorithms used in floating-point to_chars, and wrote the initial code.
+
+N: Muiez Ahmed
+E: muiez@ibm.com
+D: z/OS port.
+
+N: Dan Albert
+E: danalbert@google.com
+D: Android support and test runner improvements.
+
+N: Dimitry Andric
+E: dimitry@andric.com
+D: Visibility fixes, minor FreeBSD portability patches.
+
+N: Holger Arnold
+E: holgerar@gmail.com
+D: Minor fix.
+
+N: Jorg Brown
+D: Ported floating-point to_chars from MSVC to libc++.
+
+N: David Chisnall
+E: theraven at theravensnest dot org
+D: FreeBSD and Solaris ports, libcxxrt support, some atomics work.
+
+N: Marshall Clow
+E: mclow.lists@gmail.com
+E: marshall@idio.com
+D: C++14 support, patches and bug fixes.
+
+N: Jonathan B Coe
+E: jbcoe@me.com
+D: Implementation of propagate_const.
+
+N: Matthew Dempsky
+E: matthew@dempsky.org
+D: Minor patches and bug fixes.
+
+N: Christopher Di Bella
+E: cjdb@google.com
+E: cjdb.ns@gmail.com
+D: Library concepts.
+
+N: Glen Joseph Fernandes
+E: glenjofe@gmail.com
+D: Implementation of to_address.
+
+N: Eric Fiselier
+E: eric@efcs.ca
+D: LFTS support, patches and bug fixes.
+
+N: Bill Fisher
+E: william.w.fisher@gmail.com
+D: Regex bug fixes.
+
+N: Google Inc.
+D: Copyright owner and contributor of the CityHash algorithm
+
+N: Howard Hinnant
+E: hhinnant@apple.com
+D: Architect and primary author of libc++
+
+N: Sergej Jaskiewicz
+E: jaskiewiczs@icloud.com
+D: Minor improvements in the testing infrastructure
+
+N: Hyeon-bin Jeong
+E: tuhertz@gmail.com
+D: Minor patches and bug fixes.
+
+N: Argyrios Kyrtzidis
+E: kyrtzidis@apple.com
+D: Bug fixes.
+
+N: Stephan T. Lavavej
+E: stl@microsoft.com
+E: stl@nuwen.net
+D: Implemented floating-point to_chars.
+
+N: Microsoft Corporation
+D: Contributed floating-point to_chars.
+
+N: Bruce Mitchener, Jr.
+E: bruce.mitchener@gmail.com
+D: Emscripten-related changes.
+
+N: Michel Morin
+E: mimomorin@gmail.com
+D: Minor patches to is_convertible.
+
+N: Andrew Morrow
+E: andrew.c.morrow@gmail.com
+D: Minor patches and Linux fixes.
+
+N: Michael Park
+E: mcypark@gmail.com
+D: Implementation of <variant>.
+
+N: Arvid Picciani
+E: aep at exys dot org
+D: Minor patches and musl port.
+
+N: Bjorn Reese
+E: breese@users.sourceforge.net
+D: Initial regex prototype
+
+N: Nico Rieck
+E: nico.rieck@gmail.com
+D: Windows fixes
+
+N: Jon Roelofs
+E: jroelofS@jroelofs.com
+D: Remote testing, Newlib port, baremetal/single-threaded support.
+
+N: Kent Ross
+E: k@mad.cash
+D: Patches for operator<=> support
+
+N: Jonathan Sauer
+D: Minor patches, mostly related to constexpr
+
+N: Craig Silverstein
+E: csilvers@google.com
+D: Implemented Cityhash as the string hash function on 64-bit machines
+
+N: Richard Smith
+D: Minor patches.
+
+N: Joerg Sonnenberger
+E: joerg@NetBSD.org
+D: NetBSD port.
+
+N: Stephan Tolksdorf
+E: st@quanttec.com
+D: Minor <atomic> fix
+
+N: Ruben Van Boxem
+E: vanboxem dot ruben at gmail dot com
+D: Initial Windows patches.
+
+N: Michael van der Westhuizen
+E: r1mikey at gmail dot com
+
+N: Larisse Voufo
+D: Minor patches.
+
+N: Klaas de Vries
+E: klaas at klaasgaaf dot nl
+D: Minor bug fix.
+
+N: Mark de Wever
+E: koraq at xs4all dot nl
+D: Format library support.
+D: Finalized the porting of MSVC's to_chars to libc++.
+
+N: Zhang Xiongpang
+E: zhangxiongpang@gmail.com
+D: Minor patches and bug fixes.
+
+N: Xing Xue
+E: xingxue@ca.ibm.com
+D: AIX port
+
+N: Jeffrey Yasskin
+E: jyasskin@gmail.com
+E: jyasskin@google.com
+D: Linux fixes.
+
+N: Zhihao Yuan
+E: lichray@gmail.com
+D: Standard compatibility fixes.

+ 311 - 0
contrib/libs/cxxsupp/libcxxmsvc/LICENSE.TXT

@@ -0,0 +1,311 @@
+==============================================================================
+The LLVM Project is under the Apache License v2.0 with LLVM Exceptions:
+==============================================================================
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+    1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+    2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+    3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+    4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+    5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+    6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+    7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+    8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+    9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+    END OF TERMS AND CONDITIONS
+
+    APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+    Copyright [yyyy] [name of copyright owner]
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+
+---- LLVM Exceptions to the Apache 2.0 License ----
+
+As an exception, if, as a result of your compiling your source code, portions
+of this Software are embedded into an Object form of such source code, you
+may redistribute such embedded portions in such Object form without complying
+with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
+
+In addition, if you combine or link compiled forms of this Software with
+software that is licensed under the GPLv2 ("Combined Software") and if a
+court of competent jurisdiction determines that the patent provision (Section
+3), the indemnity provision (Section 9) or other Section of the License
+conflicts with the conditions of the GPLv2, you may retroactively and
+prospectively choose to deem waived or otherwise exclude such Section(s) of
+the License, but only in their entirety and only with respect to the Combined
+Software.
+
+==============================================================================
+Software from third parties included in the LLVM Project:
+==============================================================================
+The LLVM Project contains third party software which is under different license
+terms. All such code will be identified clearly using at least one of two
+mechanisms:
+1) It will be in a separate directory tree with its own `LICENSE.txt` or
+   `LICENSE` file at the top containing the specific license and restrictions
+   which apply to that software, or
+2) It will contain specific license and restriction terms at the top of every
+   file.
+
+==============================================================================
+Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy):
+==============================================================================
+
+The libc++ library is dual licensed under both the University of Illinois
+"BSD-Like" license and the MIT license.  As a user of this code you may choose
+to use it under either license.  As a contributor, you agree to allow your code
+to be used under both.
+
+Full text of the relevant licenses is included below.
+
+==============================================================================
+
+University of Illinois/NCSA
+Open Source License
+
+Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT
+
+All rights reserved.
+
+Developed by:
+
+    LLVM Team
+
+    University of Illinois at Urbana-Champaign
+
+    http://llvm.org
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal with
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimers.
+
+    * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimers in the
+      documentation and/or other materials provided with the distribution.
+
+    * Neither the names of the LLVM Team, University of Illinois at
+      Urbana-Champaign, nor the names of its contributors may be used to
+      endorse or promote products derived from this Software without specific
+      prior written permission.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+SOFTWARE.
+
+==============================================================================
+
+Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

+ 46 - 0
contrib/libs/cxxsupp/libcxxmsvc/include/__algorithm/adjacent_find.h

@@ -0,0 +1,46 @@
+// -*- C++ -*-
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef _LIBCPP___ALGORITHM_ADJACENT_FIND_H
+#define _LIBCPP___ALGORITHM_ADJACENT_FIND_H
+
+#include <__algorithm/comp.h>
+#include <__config>
+#include <__iterator/iterator_traits.h>
+
+#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
+#  pragma GCC system_header
+#endif
+
+_LIBCPP_BEGIN_NAMESPACE_STD
+
+template <class _ForwardIterator, class _BinaryPredicate>
+_LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17 _ForwardIterator
+adjacent_find(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) {
+  if (__first != __last) {
+    _ForwardIterator __i = __first;
+    while (++__i != __last) {
+      if (__pred(*__first, *__i))
+        return __first;
+      __first = __i;
+    }
+  }
+  return __last;
+}
+
+template <class _ForwardIterator>
+_LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17 _ForwardIterator
+adjacent_find(_ForwardIterator __first, _ForwardIterator __last) {
+  typedef typename iterator_traits<_ForwardIterator>::value_type __v;
+  return _VSTD::adjacent_find(__first, __last, __equal_to<__v>());
+}
+
+_LIBCPP_END_NAMESPACE_STD
+
+#endif // _LIBCPP___ALGORITHM_ADJACENT_FIND_H

Some files were not shown because too many files changed in this diff