Index | Thread | Search

From:
Robert Nagy <robert@openbsd.org>
Subject:
Re: libcxx subpackage in devel/llvm
To:
ports@openbsd.org
Date:
Wed, 21 May 2025 03:59:59 +0200

Download raw body.

Thread
On 20/05/25 11:40 +0200, Robert Nagy wrote:
> Hey,
> 
> The following diff adds a libcxx subpackage for llvm 19 and 20.
> This esentially allows us to build any port with a different libc++
> when needed, by switching over the port to ports-clang and setting
> MODCLANG_VERSION to the required version and then setting
> MODCLANG_CPPLIB=Yes will set the appropriate CXXFLAGS and LDFLAGS.
> 
> The libraries are renamed to include an 'e' prefix and the includes
> live in ${LOCALBASE}/llvm${LLVM_MAJOR}/ as well so nothing should
> pick these up by default.
> 
> libc++ is also built with a custom namespace (__E${LLVM_MAJOR}) which
> allows us to link to multiple libc++ versions (including base) so this
> way dependencies pulling in libc++ from base should be okay as well.
> (chromium ports are doing the exact same thing for years now)
> 
> Obviously the goal is to have an up-to-date toolchain in base, but
> this will allow us to 'fix' some corner cases where development is
> going too fast for us.

A little bit of cleanups in the updated diff, including wantlib fixes
for all llvm ports.

Index: devel/llvm/Makefile.inc
===================================================================
RCS file: /cvs/ports/devel/llvm/Makefile.inc,v
diff -u -p -u -r1.24 Makefile.inc
--- devel/llvm/Makefile.inc	24 Apr 2025 15:10:10 -0000	1.24
+++ devel/llvm/Makefile.inc	21 May 2025 01:58:00 -0000
@@ -4,6 +4,7 @@ ONLY_FOR_ARCHS ?=	${LLVM_ARCHS}
 DPB_PROPERTIES =	parallel parallel2
 
 COMMENT-main =		modular, fast C/C++/ObjC compiler, static analyzer and tools
+COMMENT-libcxx =	C++ standard library
 COMMENT-lldb =		LLDB debugger
 COMMENT-python =	Python bindings for Clang
 
@@ -13,10 +14,12 @@ PKGSTEM =		llvm-${LLVM_MAJOR}
 PKGSTEM-main =		llvm-${LLVM_MAJOR}
 
 PKGNAME =		llvm-${LLVM_VERSION}
+PKGNAME-libcxx =	libcxx-${LLVM_VERSION}
 PKGNAME-lldb =		lldb-${LLVM_VERSION}
 PKGNAME-python =	${MODPY_PY_PREFIX}llvm-${LLVM_VERSION}
 
 PKGSPEC-main =		llvm-${LLVM_PKGSPEC}
+PKGSPEC-libcxx =	libcxx-${LLVM_PKGSPEC}
 PKGSPEC-lldb =		lldb-${LLVM_PKGSPEC}
 PKGSPEC-python =	${MODPY_PY_PREFIX}llvm-${LLVM_PKGSPEC}
 
@@ -30,17 +33,55 @@ SUBST_VARS +=	LLVM_BASE LLVM_MAJOR LLVM_
 
 HOMEPAGE =	https://www.llvm.org/
 
-WANTLIB +=	${COMPILER_LIBCXX} c edit execinfo m z
+WANTLIB-main +=	${COMPILER_LIBCXX} c edit execinfo m z
+WANTLIB-libcxx += c m pthread
+WANTLIB-lldb += ${COMPILER_LIBCXX} c curses edit form kvm
+WANTLIB-lldb += m panel ${MODPY_WANTLIB} z
+.if ${LLVM_MAJOR} > 16
+WANTLIB-lldb += llvm${LLVM_MAJOR}/lib/LLVM
+.endif
+WANTLIB-lldb += llvm${LLVM_MAJOR}/lib/clang-cpp
+WANTLIB-python =
+
+LIB_DEPENDS-lldb += devel/llvm/${LLVM_MAJOR},-main
 
 SITES =		https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_VERSION}/
 EXTRACT_SUFX =	.tar.xz
 
+.if ${LLVM_MAJOR} >= 19
+LIBCPP_PACKAGE=		-libcxx
+
+# mimic the way base libc++ is built except for the namespace which
+# is set to __E${LLVM_MAJOR} to avoid conflicts with base libc++
+CONFIGURE_ARGS +=	\
+	-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
+	-DLIBCXX_ABI_NAMESPACE="__E${LLVM_MAJOR}" \
+	-DLIBCXX_ENABLE_STATIC=OFF \
+	-DLIBCXX_INSTALL_LIBRARY_DIR="lib" \
+	-DLIBCXX_INSTALL_INCLUDE_TARGET_DIR="include/c++/v1" \
+	-DLIBCXX_SHARED_OUTPUT_NAME="ec++" \
+	-DLIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY=OFF \
+	-DLIBCXXABI_ENABLE_STATIC=OFF \
+	-DLIBCXXABI_INSTALL_LIBRARY_DIR="lib" \
+	-DLIBCXXABI_SHARED_OUTPUT_NAME="ec++abi" \
+	-DLIBCXXABI_STATICALLY_LINK_UNWINDER_IN_SHARED_LIBRARY=ON \
+	-DLIBCXXABI_USE_LLVM_UNWINDER=ON
+
+# we statically link libunwind in libc++abi
+CONFIGURE_ARGS +=	\
+	-DLIBUNWIND_ENABLE_SHARED=OFF \
+	-DLIBUNWIND_INSTALL_HEADERS=OFF \
+	-DLIBUNWIND_INSTALL_LIBRARY=OFF \
+	-DLIBUNWIND_INSTALL_SHARED_LIBRARY=OFF \
+	-DLIBUNWIND_INSTALL_STATIC_LIBRARY=OFF
+.endif
+
 # BUILD_LLDB is defined by /usr/share/mk/bsd.own.mk
 .if ${BUILD_LLDB:L} == yes
-MULTI_PACKAGES ?=	-main -python -lldb
+MULTI_PACKAGES ?=	-main -python -lldb ${LIBCPP_PACKAGE}
 PROJECTS ?=		clang;lld;lldb
 .else
-MULTI_PACKAGES ?=	-main -python
+MULTI_PACKAGES ?=	-main -python ${LIBCPP_PACKAGE}
 PROJECTS ?=		clang;lld
 .endif
 
Index: devel/llvm/13/Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/13/Makefile,v
diff -u -p -u -r1.32 Makefile
--- devel/llvm/13/Makefile	20 Feb 2025 09:32:17 -0000	1.32
+++ devel/llvm/13/Makefile	21 May 2025 01:58:00 -0000
@@ -4,8 +4,8 @@ LLVM_MAJOR =	13
 LLVM_VERSION =	${LLVM_MAJOR}.0.0
 LLVM_PKGSPEC =	>=13,<14
 
-REVISION-main =		33
-REVISION-python =	7
+REVISION-main =		34
+REVISION-python =	8
 
 MULTI_PACKAGES =	-main -python
 PROJECTS =		clang;lld
Index: devel/llvm/16/Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/16/Makefile,v
diff -u -p -u -r1.39 Makefile
--- devel/llvm/16/Makefile	17 May 2025 20:15:10 -0000	1.39
+++ devel/llvm/16/Makefile	21 May 2025 01:58:00 -0000
@@ -2,9 +2,9 @@ LLVM_MAJOR =	16
 LLVM_VERSION =	${LLVM_MAJOR}.0.6
 LLVM_PKGSPEC =	>=16,<17
 
-REVISION-main =		33
-REVISION-lldb =		11
-REVISION-python =	4
+REVISION-main =		34
+REVISION-lldb =		12
+REVISION-python =	5
 
 SHARED_LIBS +=	LTO		0.0 \
 		Remarks		0.0 \
Index: devel/llvm/18/Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/18/Makefile,v
diff -u -p -u -r1.17 Makefile
--- devel/llvm/18/Makefile	17 May 2025 20:15:10 -0000	1.17
+++ devel/llvm/18/Makefile	21 May 2025 01:58:00 -0000
@@ -2,9 +2,9 @@ LLVM_MAJOR =	18
 LLVM_VERSION =	${LLVM_MAJOR}.1.8
 LLVM_PKGSPEC =	>=18,<19
 
-REVISION-main =	4
-REVISION-python = 0
-REVISION-lldb =	4
+REVISION-main =	5
+REVISION-python = 1
+REVISION-lldb =	5
 
 SHARED_LIBS +=	LLVM		0.0 \
 		LTO		0.0 \
Index: devel/llvm/19/Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/19/Makefile,v
diff -u -p -u -r1.12 Makefile
--- devel/llvm/19/Makefile	17 May 2025 20:15:10 -0000	1.12
+++ devel/llvm/19/Makefile	21 May 2025 01:58:00 -0000
@@ -2,13 +2,17 @@ LLVM_MAJOR =	19
 LLVM_VERSION =	${LLVM_MAJOR}.1.7
 LLVM_PKGSPEC =	>=19,<20
 
-REVISION-main =	4
+REVISION-main =	5
+REVISION-lldb = 0
+REVISION-python = 0
 
 SHARED_LIBS +=	LLVM		0.0 \
 		LTO		0.0 \
 		Remarks		0.0 \
 		clang-cpp	0.0 \
 		clang		0.0 \
+		ec++		0.0 \
+		ec++abi		0.0 \
 		lldb		0.0
 
 # Apache License v2.0 with LLVM Exceptions
Index: devel/llvm/19/patches/patch-libcxx_src_CMakeLists_txt
===================================================================
RCS file: devel/llvm/19/patches/patch-libcxx_src_CMakeLists_txt
diff -N devel/llvm/19/patches/patch-libcxx_src_CMakeLists_txt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/llvm/19/patches/patch-libcxx_src_CMakeLists_txt	21 May 2025 01:58:00 -0000
@@ -0,0 +1,12 @@
+Index: libcxx/src/CMakeLists.txt
+--- libcxx/src/CMakeLists.txt.orig
++++ libcxx/src/CMakeLists.txt
+@@ -349,7 +349,7 @@ endif()
+ set_target_properties(cxx_experimental
+   PROPERTIES
+     COMPILE_FLAGS "${LIBCXX_COMPILE_FLAGS}"
+-    OUTPUT_NAME   "c++experimental"
++    OUTPUT_NAME   "${LIBCXX_SHARED_OUTPUT_NAME}experimental"
+ )
+ cxx_add_common_build_flags(cxx_experimental)
+ target_compile_options(cxx_experimental PUBLIC -D_LIBCPP_ENABLE_EXPERIMENTAL)
Index: devel/llvm/19/pkg/PLIST-libcxx
===================================================================
RCS file: devel/llvm/19/pkg/PLIST-libcxx
diff -N devel/llvm/19/pkg/PLIST-libcxx
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/llvm/19/pkg/PLIST-libcxx	21 May 2025 01:58:01 -0000
@@ -0,0 +1,1217 @@
+@option no-default-conflict
+@option is-branch
+@conflict libcxx-${LLVM_PKGSPEC}
+${LLVM_BASE}/include/c++/
+${LLVM_BASE}/include/c++/v1/
+${LLVM_BASE}/include/c++/v1/__algorithm/
+${LLVM_BASE}/include/c++/v1/__algorithm/adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/all_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/any_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/binary_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/clamp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/comp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_move_common.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/count.h
+${LLVM_BASE}/include/c++/v1/__algorithm/count_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/equal.h
+${LLVM_BASE}/include/c++/v1/__algorithm/equal_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/fill.h
+${LLVM_BASE}/include/c++/v1/__algorithm/fill_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_end.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_first_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_if_not.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_segment_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/fold.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each_segment.h
+${LLVM_BASE}/include/c++/v1/__algorithm/generate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/generate_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/half_positive.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_found_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_fun_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_in_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_in_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_out_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/includes.h
+${LLVM_BASE}/include/c++/v1/__algorithm/inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_sorted.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/iterator_operations.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lexicographical_compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lower_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/make_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/make_projected.h
+${LLVM_BASE}/include/c++/v1/__algorithm/max.h
+${LLVM_BASE}/include/c++/v1/__algorithm/max_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min_max_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/minmax.h
+${LLVM_BASE}/include/c++/v1/__algorithm/minmax_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/mismatch.h
+${LLVM_BASE}/include/c++/v1/__algorithm/move.h
+${LLVM_BASE}/include/c++/v1/__algorithm/move_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/next_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/none_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/nth_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partial_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition_point.h
+${LLVM_BASE}/include/c++/v1/__algorithm/pop_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/pstl.h
+${LLVM_BASE}/include/c++/v1/__algorithm/push_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_all_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_any_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_binary_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_clamp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_contains.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_contains_subrange.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_count.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_count_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_ends_with.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_equal.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_equal_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_fill.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_fill_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_end.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_first_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_if_not.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_last.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_for_each.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_for_each_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_generate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_generate_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_includes.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_sorted.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_iterator_concept.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_lower_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_make_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_max.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_max_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_min.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_min_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_minmax.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_minmax_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_mismatch.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_move.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_move_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_next_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_none_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_nth_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partial_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition_point.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_pop_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_push_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_reverse.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_rotate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sample.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_search_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_intersection.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_union.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_shuffle.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sort_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_stable_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_stable_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_starts_with.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_transform.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_unique.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_unique_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_upper_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/reverse.h
+${LLVM_BASE}/include/c++/v1/__algorithm/reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/rotate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sample.h
+${LLVM_BASE}/include/c++/v1/__algorithm/search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/search_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_intersection.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_union.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shift_left.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shift_right.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shuffle.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sift_down.h
+${LLVM_BASE}/include/c++/v1/__algorithm/simd_utils.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sort_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/stable_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__algorithm/three_way_comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__algorithm/transform.h
+${LLVM_BASE}/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unique.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unique_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unwrap_iter.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unwrap_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/upper_bound.h
+${LLVM_BASE}/include/c++/v1/__assert
+${LLVM_BASE}/include/c++/v1/__assertion_handler
+${LLVM_BASE}/include/c++/v1/__atomic/
+${LLVM_BASE}/include/c++/v1/__atomic/aliases.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_base.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_flag.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_init.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_lock_free.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_ref.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_sync.h
+${LLVM_BASE}/include/c++/v1/__atomic/check_memory_order.h
+${LLVM_BASE}/include/c++/v1/__atomic/contention_t.h
+${LLVM_BASE}/include/c++/v1/__atomic/cxx_atomic_impl.h
+${LLVM_BASE}/include/c++/v1/__atomic/fence.h
+${LLVM_BASE}/include/c++/v1/__atomic/is_always_lock_free.h
+${LLVM_BASE}/include/c++/v1/__atomic/kill_dependency.h
+${LLVM_BASE}/include/c++/v1/__atomic/memory_order.h
+${LLVM_BASE}/include/c++/v1/__atomic/to_gcc_order.h
+${LLVM_BASE}/include/c++/v1/__bit/
+${LLVM_BASE}/include/c++/v1/__bit/bit_cast.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_ceil.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_floor.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_log2.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_width.h
+${LLVM_BASE}/include/c++/v1/__bit/blsr.h
+${LLVM_BASE}/include/c++/v1/__bit/byteswap.h
+${LLVM_BASE}/include/c++/v1/__bit/countl.h
+${LLVM_BASE}/include/c++/v1/__bit/countr.h
+${LLVM_BASE}/include/c++/v1/__bit/endian.h
+${LLVM_BASE}/include/c++/v1/__bit/has_single_bit.h
+${LLVM_BASE}/include/c++/v1/__bit/invert_if.h
+${LLVM_BASE}/include/c++/v1/__bit/popcount.h
+${LLVM_BASE}/include/c++/v1/__bit/rotate.h
+${LLVM_BASE}/include/c++/v1/__bit_reference
+${LLVM_BASE}/include/c++/v1/__charconv/
+${LLVM_BASE}/include/c++/v1/__charconv/chars_format.h
+${LLVM_BASE}/include/c++/v1/__charconv/from_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__charconv/from_chars_result.h
+${LLVM_BASE}/include/c++/v1/__charconv/tables.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_base_10.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_floating_point.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_result.h
+${LLVM_BASE}/include/c++/v1/__charconv/traits.h
+${LLVM_BASE}/include/c++/v1/__chrono/
+${LLVM_BASE}/include/c++/v1/__chrono/calendar.h
+${LLVM_BASE}/include/c++/v1/__chrono/concepts.h
+${LLVM_BASE}/include/c++/v1/__chrono/convert_to_timespec.h
+${LLVM_BASE}/include/c++/v1/__chrono/convert_to_tm.h
+${LLVM_BASE}/include/c++/v1/__chrono/day.h
+${LLVM_BASE}/include/c++/v1/__chrono/duration.h
+${LLVM_BASE}/include/c++/v1/__chrono/exception.h
+${LLVM_BASE}/include/c++/v1/__chrono/file_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/formatter.h
+${LLVM_BASE}/include/c++/v1/__chrono/hh_mm_ss.h
+${LLVM_BASE}/include/c++/v1/__chrono/high_resolution_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/leap_second.h
+${LLVM_BASE}/include/c++/v1/__chrono/literals.h
+${LLVM_BASE}/include/c++/v1/__chrono/local_info.h
+${LLVM_BASE}/include/c++/v1/__chrono/month.h
+${LLVM_BASE}/include/c++/v1/__chrono/month_weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/monthday.h
+${LLVM_BASE}/include/c++/v1/__chrono/ostream.h
+${LLVM_BASE}/include/c++/v1/__chrono/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__chrono/statically_widen.h
+${LLVM_BASE}/include/c++/v1/__chrono/steady_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/sys_info.h
+${LLVM_BASE}/include/c++/v1/__chrono/system_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_point.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_zone.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_zone_link.h
+${LLVM_BASE}/include/c++/v1/__chrono/tzdb.h
+${LLVM_BASE}/include/c++/v1/__chrono/tzdb_list.h
+${LLVM_BASE}/include/c++/v1/__chrono/weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/year.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month_day.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month_weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/zoned_time.h
+${LLVM_BASE}/include/c++/v1/__compare/
+${LLVM_BASE}/include/c++/v1/__compare/common_comparison_category.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_partial_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_strong_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_three_way_result.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_weak_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/is_eq.h
+${LLVM_BASE}/include/c++/v1/__compare/ordering.h
+${LLVM_BASE}/include/c++/v1/__compare/partial_order.h
+${LLVM_BASE}/include/c++/v1/__compare/strong_order.h
+${LLVM_BASE}/include/c++/v1/__compare/synth_three_way.h
+${LLVM_BASE}/include/c++/v1/__compare/three_way_comparable.h
+${LLVM_BASE}/include/c++/v1/__compare/weak_order.h
+${LLVM_BASE}/include/c++/v1/__concepts/
+${LLVM_BASE}/include/c++/v1/__concepts/arithmetic.h
+${LLVM_BASE}/include/c++/v1/__concepts/assignable.h
+${LLVM_BASE}/include/c++/v1/__concepts/boolean_testable.h
+${LLVM_BASE}/include/c++/v1/__concepts/class_or_enum.h
+${LLVM_BASE}/include/c++/v1/__concepts/common_reference_with.h
+${LLVM_BASE}/include/c++/v1/__concepts/common_with.h
+${LLVM_BASE}/include/c++/v1/__concepts/constructible.h
+${LLVM_BASE}/include/c++/v1/__concepts/convertible_to.h
+${LLVM_BASE}/include/c++/v1/__concepts/copyable.h
+${LLVM_BASE}/include/c++/v1/__concepts/derived_from.h
+${LLVM_BASE}/include/c++/v1/__concepts/destructible.h
+${LLVM_BASE}/include/c++/v1/__concepts/different_from.h
+${LLVM_BASE}/include/c++/v1/__concepts/equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__concepts/invocable.h
+${LLVM_BASE}/include/c++/v1/__concepts/movable.h
+${LLVM_BASE}/include/c++/v1/__concepts/predicate.h
+${LLVM_BASE}/include/c++/v1/__concepts/regular.h
+${LLVM_BASE}/include/c++/v1/__concepts/relation.h
+${LLVM_BASE}/include/c++/v1/__concepts/same_as.h
+${LLVM_BASE}/include/c++/v1/__concepts/semiregular.h
+${LLVM_BASE}/include/c++/v1/__concepts/swappable.h
+${LLVM_BASE}/include/c++/v1/__concepts/totally_ordered.h
+${LLVM_BASE}/include/c++/v1/__condition_variable/
+${LLVM_BASE}/include/c++/v1/__condition_variable/condition_variable.h
+${LLVM_BASE}/include/c++/v1/__config
+${LLVM_BASE}/include/c++/v1/__config_site
+${LLVM_BASE}/include/c++/v1/__configuration/
+${LLVM_BASE}/include/c++/v1/__configuration/abi.h
+${LLVM_BASE}/include/c++/v1/__configuration/availability.h
+${LLVM_BASE}/include/c++/v1/__configuration/compiler.h
+${LLVM_BASE}/include/c++/v1/__configuration/language.h
+${LLVM_BASE}/include/c++/v1/__configuration/platform.h
+${LLVM_BASE}/include/c++/v1/__coroutine/
+${LLVM_BASE}/include/c++/v1/__coroutine/coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__coroutine/coroutine_traits.h
+${LLVM_BASE}/include/c++/v1/__coroutine/noop_coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__coroutine/trivial_awaitables.h
+${LLVM_BASE}/include/c++/v1/__cxxabi_config.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/
+${LLVM_BASE}/include/c++/v1/__debug_utils/randomize_range.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/sanitizers.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/strict_weak_ordering_check.h
+${LLVM_BASE}/include/c++/v1/__exception/
+${LLVM_BASE}/include/c++/v1/__exception/exception.h
+${LLVM_BASE}/include/c++/v1/__exception/exception_ptr.h
+${LLVM_BASE}/include/c++/v1/__exception/nested_exception.h
+${LLVM_BASE}/include/c++/v1/__exception/operations.h
+${LLVM_BASE}/include/c++/v1/__exception/terminate.h
+${LLVM_BASE}/include/c++/v1/__expected/
+${LLVM_BASE}/include/c++/v1/__expected/bad_expected_access.h
+${LLVM_BASE}/include/c++/v1/__expected/expected.h
+${LLVM_BASE}/include/c++/v1/__expected/unexpect.h
+${LLVM_BASE}/include/c++/v1/__expected/unexpected.h
+${LLVM_BASE}/include/c++/v1/__filesystem/
+${LLVM_BASE}/include/c++/v1/__filesystem/copy_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_entry.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_status.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_time_type.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_type.h
+${LLVM_BASE}/include/c++/v1/__filesystem/filesystem_error.h
+${LLVM_BASE}/include/c++/v1/__filesystem/operations.h
+${LLVM_BASE}/include/c++/v1/__filesystem/path.h
+${LLVM_BASE}/include/c++/v1/__filesystem/path_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/perm_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/perms.h
+${LLVM_BASE}/include/c++/v1/__filesystem/recursive_directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/space_info.h
+${LLVM_BASE}/include/c++/v1/__filesystem/u8path.h
+${LLVM_BASE}/include/c++/v1/__format/
+${LLVM_BASE}/include/c++/v1/__format/buffer.h
+${LLVM_BASE}/include/c++/v1/__format/concepts.h
+${LLVM_BASE}/include/c++/v1/__format/container_adaptor.h
+${LLVM_BASE}/include/c++/v1/__format/enable_insertable.h
+${LLVM_BASE}/include/c++/v1/__format/escaped_output_table.h
+${LLVM_BASE}/include/c++/v1/__format/extended_grapheme_cluster_table.h
+${LLVM_BASE}/include/c++/v1/__format/format_arg.h
+${LLVM_BASE}/include/c++/v1/__format/format_arg_store.h
+${LLVM_BASE}/include/c++/v1/__format/format_args.h
+${LLVM_BASE}/include/c++/v1/__format/format_context.h
+${LLVM_BASE}/include/c++/v1/__format/format_error.h
+${LLVM_BASE}/include/c++/v1/__format/format_functions.h
+${LLVM_BASE}/include/c++/v1/__format/format_parse_context.h
+${LLVM_BASE}/include/c++/v1/__format/format_string.h
+${LLVM_BASE}/include/c++/v1/__format/format_to_n_result.h
+${LLVM_BASE}/include/c++/v1/__format/formatter.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_bool.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_char.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_floating_point.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_integer.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_integral.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_output.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_pointer.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_string.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_tuple.h
+${LLVM_BASE}/include/c++/v1/__format/indic_conjunct_break_table.h
+${LLVM_BASE}/include/c++/v1/__format/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__format/range_default_formatter.h
+${LLVM_BASE}/include/c++/v1/__format/range_formatter.h
+${LLVM_BASE}/include/c++/v1/__format/unicode.h
+${LLVM_BASE}/include/c++/v1/__format/width_estimation_table.h
+${LLVM_BASE}/include/c++/v1/__format/write_escaped.h
+${LLVM_BASE}/include/c++/v1/__functional/
+${LLVM_BASE}/include/c++/v1/__functional/binary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/binary_negate.h
+${LLVM_BASE}/include/c++/v1/__functional/bind.h
+${LLVM_BASE}/include/c++/v1/__functional/bind_back.h
+${LLVM_BASE}/include/c++/v1/__functional/bind_front.h
+${LLVM_BASE}/include/c++/v1/__functional/binder1st.h
+${LLVM_BASE}/include/c++/v1/__functional/binder2nd.h
+${LLVM_BASE}/include/c++/v1/__functional/boyer_moore_searcher.h
+${LLVM_BASE}/include/c++/v1/__functional/compose.h
+${LLVM_BASE}/include/c++/v1/__functional/default_searcher.h
+${LLVM_BASE}/include/c++/v1/__functional/function.h
+${LLVM_BASE}/include/c++/v1/__functional/hash.h
+${LLVM_BASE}/include/c++/v1/__functional/identity.h
+${LLVM_BASE}/include/c++/v1/__functional/invoke.h
+${LLVM_BASE}/include/c++/v1/__functional/is_transparent.h
+${LLVM_BASE}/include/c++/v1/__functional/mem_fn.h
+${LLVM_BASE}/include/c++/v1/__functional/mem_fun_ref.h
+${LLVM_BASE}/include/c++/v1/__functional/not_fn.h
+${LLVM_BASE}/include/c++/v1/__functional/operations.h
+${LLVM_BASE}/include/c++/v1/__functional/perfect_forward.h
+${LLVM_BASE}/include/c++/v1/__functional/pointer_to_binary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/pointer_to_unary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/ranges_operations.h
+${LLVM_BASE}/include/c++/v1/__functional/reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__functional/unary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/unary_negate.h
+${LLVM_BASE}/include/c++/v1/__functional/weak_result_type.h
+${LLVM_BASE}/include/c++/v1/__fwd/
+${LLVM_BASE}/include/c++/v1/__fwd/array.h
+${LLVM_BASE}/include/c++/v1/__fwd/bit_reference.h
+${LLVM_BASE}/include/c++/v1/__fwd/complex.h
+${LLVM_BASE}/include/c++/v1/__fwd/deque.h
+${LLVM_BASE}/include/c++/v1/__fwd/format.h
+${LLVM_BASE}/include/c++/v1/__fwd/fstream.h
+${LLVM_BASE}/include/c++/v1/__fwd/functional.h
+${LLVM_BASE}/include/c++/v1/__fwd/ios.h
+${LLVM_BASE}/include/c++/v1/__fwd/istream.h
+${LLVM_BASE}/include/c++/v1/__fwd/mdspan.h
+${LLVM_BASE}/include/c++/v1/__fwd/memory.h
+${LLVM_BASE}/include/c++/v1/__fwd/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__fwd/ostream.h
+${LLVM_BASE}/include/c++/v1/__fwd/pair.h
+${LLVM_BASE}/include/c++/v1/__fwd/queue.h
+${LLVM_BASE}/include/c++/v1/__fwd/span.h
+${LLVM_BASE}/include/c++/v1/__fwd/sstream.h
+${LLVM_BASE}/include/c++/v1/__fwd/stack.h
+${LLVM_BASE}/include/c++/v1/__fwd/streambuf.h
+${LLVM_BASE}/include/c++/v1/__fwd/string.h
+${LLVM_BASE}/include/c++/v1/__fwd/string_view.h
+${LLVM_BASE}/include/c++/v1/__fwd/subrange.h
+${LLVM_BASE}/include/c++/v1/__fwd/tuple.h
+${LLVM_BASE}/include/c++/v1/__fwd/vector.h
+${LLVM_BASE}/include/c++/v1/__hash_table
+${LLVM_BASE}/include/c++/v1/__ios/
+${LLVM_BASE}/include/c++/v1/__ios/fpos.h
+${LLVM_BASE}/include/c++/v1/__iterator/
+${LLVM_BASE}/include/c++/v1/__iterator/access.h
+${LLVM_BASE}/include/c++/v1/__iterator/advance.h
+${LLVM_BASE}/include/c++/v1/__iterator/aliasing_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/back_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/bounded_iter.h
+${LLVM_BASE}/include/c++/v1/__iterator/common_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/concepts.h
+${LLVM_BASE}/include/c++/v1/__iterator/counted_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/cpp17_iterator_concepts.h
+${LLVM_BASE}/include/c++/v1/__iterator/data.h
+${LLVM_BASE}/include/c++/v1/__iterator/default_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/distance.h
+${LLVM_BASE}/include/c++/v1/__iterator/empty.h
+${LLVM_BASE}/include/c++/v1/__iterator/erase_if_container.h
+${LLVM_BASE}/include/c++/v1/__iterator/front_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/incrementable_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/indirectly_comparable.h
+${LLVM_BASE}/include/c++/v1/__iterator/insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/istream_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/istreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/iter_move.h
+${LLVM_BASE}/include/c++/v1/__iterator/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator_with_data.h
+${LLVM_BASE}/include/c++/v1/__iterator/mergeable.h
+${LLVM_BASE}/include/c++/v1/__iterator/move_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/move_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/next.h
+${LLVM_BASE}/include/c++/v1/__iterator/ostream_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/ostreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/permutable.h
+${LLVM_BASE}/include/c++/v1/__iterator/prev.h
+${LLVM_BASE}/include/c++/v1/__iterator/projected.h
+${LLVM_BASE}/include/c++/v1/__iterator/ranges_iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/readable_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/reverse_access.h
+${LLVM_BASE}/include/c++/v1/__iterator/reverse_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/segmented_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/size.h
+${LLVM_BASE}/include/c++/v1/__iterator/sortable.h
+${LLVM_BASE}/include/c++/v1/__iterator/unreachable_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/wrap_iter.h
+${LLVM_BASE}/include/c++/v1/__locale
+${LLVM_BASE}/include/c++/v1/__locale_dir/
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/android.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_fallbacks.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/fuchsia.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/ibm.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/locale_guard.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/musl.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/newlib.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/openbsd.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/win32.h
+${LLVM_BASE}/include/c++/v1/__math/
+${LLVM_BASE}/include/c++/v1/__math/abs.h
+${LLVM_BASE}/include/c++/v1/__math/copysign.h
+${LLVM_BASE}/include/c++/v1/__math/error_functions.h
+${LLVM_BASE}/include/c++/v1/__math/exponential_functions.h
+${LLVM_BASE}/include/c++/v1/__math/fdim.h
+${LLVM_BASE}/include/c++/v1/__math/fma.h
+${LLVM_BASE}/include/c++/v1/__math/gamma.h
+${LLVM_BASE}/include/c++/v1/__math/hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__math/hypot.h
+${LLVM_BASE}/include/c++/v1/__math/inverse_hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__math/inverse_trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__math/logarithms.h
+${LLVM_BASE}/include/c++/v1/__math/min_max.h
+${LLVM_BASE}/include/c++/v1/__math/modulo.h
+${LLVM_BASE}/include/c++/v1/__math/remainder.h
+${LLVM_BASE}/include/c++/v1/__math/roots.h
+${LLVM_BASE}/include/c++/v1/__math/rounding_functions.h
+${LLVM_BASE}/include/c++/v1/__math/special_functions.h
+${LLVM_BASE}/include/c++/v1/__math/traits.h
+${LLVM_BASE}/include/c++/v1/__math/trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__mdspan/
+${LLVM_BASE}/include/c++/v1/__mdspan/default_accessor.h
+${LLVM_BASE}/include/c++/v1/__mdspan/extents.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_left.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_right.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_stride.h
+${LLVM_BASE}/include/c++/v1/__mdspan/mdspan.h
+${LLVM_BASE}/include/c++/v1/__memory/
+${LLVM_BASE}/include/c++/v1/__memory/addressof.h
+${LLVM_BASE}/include/c++/v1/__memory/align.h
+${LLVM_BASE}/include/c++/v1/__memory/aligned_alloc.h
+${LLVM_BASE}/include/c++/v1/__memory/allocate_at_least.h
+${LLVM_BASE}/include/c++/v1/__memory/allocation_guard.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_arg_t.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_destructor.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_traits.h
+${LLVM_BASE}/include/c++/v1/__memory/assume_aligned.h
+${LLVM_BASE}/include/c++/v1/__memory/auto_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/builtin_new_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/compressed_pair.h
+${LLVM_BASE}/include/c++/v1/__memory/concepts.h
+${LLVM_BASE}/include/c++/v1/__memory/construct_at.h
+${LLVM_BASE}/include/c++/v1/__memory/destruct_n.h
+${LLVM_BASE}/include/c++/v1/__memory/inout_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/out_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/pointer_traits.h
+${LLVM_BASE}/include/c++/v1/__memory/ranges_construct_at.h
+${LLVM_BASE}/include/c++/v1/__memory/ranges_uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__memory/raw_storage_iterator.h
+${LLVM_BASE}/include/c++/v1/__memory/shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/swap_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/temp_value.h
+${LLVM_BASE}/include/c++/v1/__memory/temporary_buffer.h
+${LLVM_BASE}/include/c++/v1/__memory/uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__memory/unique_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/uses_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/uses_allocator_construction.h
+${LLVM_BASE}/include/c++/v1/__memory/voidify.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/
+${LLVM_BASE}/include/c++/v1/__memory_resource/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/monotonic_buffer_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/polymorphic_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/pool_options.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/synchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/unsynchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__mutex/
+${LLVM_BASE}/include/c++/v1/__mutex/lock_guard.h
+${LLVM_BASE}/include/c++/v1/__mutex/mutex.h
+${LLVM_BASE}/include/c++/v1/__mutex/once_flag.h
+${LLVM_BASE}/include/c++/v1/__mutex/tag_types.h
+${LLVM_BASE}/include/c++/v1/__mutex/unique_lock.h
+${LLVM_BASE}/include/c++/v1/__node_handle
+${LLVM_BASE}/include/c++/v1/__numeric/
+${LLVM_BASE}/include/c++/v1/__numeric/accumulate.h
+${LLVM_BASE}/include/c++/v1/__numeric/adjacent_difference.h
+${LLVM_BASE}/include/c++/v1/__numeric/exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/gcd_lcm.h
+${LLVM_BASE}/include/c++/v1/__numeric/inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/inner_product.h
+${LLVM_BASE}/include/c++/v1/__numeric/iota.h
+${LLVM_BASE}/include/c++/v1/__numeric/midpoint.h
+${LLVM_BASE}/include/c++/v1/__numeric/partial_sum.h
+${LLVM_BASE}/include/c++/v1/__numeric/pstl.h
+${LLVM_BASE}/include/c++/v1/__numeric/reduce.h
+${LLVM_BASE}/include/c++/v1/__numeric/saturation_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__ostream/
+${LLVM_BASE}/include/c++/v1/__ostream/basic_ostream.h
+${LLVM_BASE}/include/c++/v1/__ostream/print.h
+${LLVM_BASE}/include/c++/v1/__pstl/
+${LLVM_BASE}/include/c++/v1/__pstl/backend.h
+${LLVM_BASE}/include/c++/v1/__pstl/backend_fwd.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/
+${LLVM_BASE}/include/c++/v1/__pstl/backends/default.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/libdispatch.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/serial.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/std_thread.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/any_of.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/cpu_traits.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/fill.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/find_if.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/for_each.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/merge.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/transform.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__pstl/dispatch.h
+${LLVM_BASE}/include/c++/v1/__pstl/handle_exception.h
+${LLVM_BASE}/include/c++/v1/__random/
+${LLVM_BASE}/include/c++/v1/__random/bernoulli_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/cauchy_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/chi_squared_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/clamp_to_integral.h
+${LLVM_BASE}/include/c++/v1/__random/default_random_engine.h
+${LLVM_BASE}/include/c++/v1/__random/discard_block_engine.h
+${LLVM_BASE}/include/c++/v1/__random/discrete_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/exponential_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/extreme_value_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/fisher_f_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/gamma_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/generate_canonical.h
+${LLVM_BASE}/include/c++/v1/__random/geometric_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/independent_bits_engine.h
+${LLVM_BASE}/include/c++/v1/__random/is_seed_sequence.h
+${LLVM_BASE}/include/c++/v1/__random/is_valid.h
+${LLVM_BASE}/include/c++/v1/__random/knuth_b.h
+${LLVM_BASE}/include/c++/v1/__random/linear_congruential_engine.h
+${LLVM_BASE}/include/c++/v1/__random/log2.h
+${LLVM_BASE}/include/c++/v1/__random/lognormal_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/mersenne_twister_engine.h
+${LLVM_BASE}/include/c++/v1/__random/negative_binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/normal_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/piecewise_constant_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/piecewise_linear_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/poisson_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/random_device.h
+${LLVM_BASE}/include/c++/v1/__random/ranlux.h
+${LLVM_BASE}/include/c++/v1/__random/seed_seq.h
+${LLVM_BASE}/include/c++/v1/__random/shuffle_order_engine.h
+${LLVM_BASE}/include/c++/v1/__random/student_t_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/subtract_with_carry_engine.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_int_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_random_bit_generator.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_real_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/weibull_distribution.h
+${LLVM_BASE}/include/c++/v1/__ranges/
+${LLVM_BASE}/include/c++/v1/__ranges/access.h
+${LLVM_BASE}/include/c++/v1/__ranges/all.h
+${LLVM_BASE}/include/c++/v1/__ranges/as_rvalue_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/chunk_by_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/common_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/concepts.h
+${LLVM_BASE}/include/c++/v1/__ranges/container_compatible_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/counted.h
+${LLVM_BASE}/include/c++/v1/__ranges/dangling.h
+${LLVM_BASE}/include/c++/v1/__ranges/data.h
+${LLVM_BASE}/include/c++/v1/__ranges/drop_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/drop_while_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/elements_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/empty.h
+${LLVM_BASE}/include/c++/v1/__ranges/empty_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/enable_borrowed_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/enable_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/filter_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/from_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/iota_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/istream_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/join_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/lazy_split_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/movable_box.h
+${LLVM_BASE}/include/c++/v1/__ranges/non_propagating_cache.h
+${LLVM_BASE}/include/c++/v1/__ranges/owning_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/range_adaptor.h
+${LLVM_BASE}/include/c++/v1/__ranges/rbegin.h
+${LLVM_BASE}/include/c++/v1/__ranges/ref_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/rend.h
+${LLVM_BASE}/include/c++/v1/__ranges/repeat_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/reverse_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/single_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/size.h
+${LLVM_BASE}/include/c++/v1/__ranges/split_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/subrange.h
+${LLVM_BASE}/include/c++/v1/__ranges/take_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/take_while_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/to.h
+${LLVM_BASE}/include/c++/v1/__ranges/transform_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/view_interface.h
+${LLVM_BASE}/include/c++/v1/__ranges/views.h
+${LLVM_BASE}/include/c++/v1/__ranges/zip_view.h
+${LLVM_BASE}/include/c++/v1/__split_buffer
+${LLVM_BASE}/include/c++/v1/__std_clang_module
+${LLVM_BASE}/include/c++/v1/__std_mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__stop_token/
+${LLVM_BASE}/include/c++/v1/__stop_token/atomic_unique_lock.h
+${LLVM_BASE}/include/c++/v1/__stop_token/intrusive_list_view.h
+${LLVM_BASE}/include/c++/v1/__stop_token/intrusive_shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_callback.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_source.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_state.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_token.h
+${LLVM_BASE}/include/c++/v1/__string/
+${LLVM_BASE}/include/c++/v1/__string/char_traits.h
+${LLVM_BASE}/include/c++/v1/__string/constexpr_c_functions.h
+${LLVM_BASE}/include/c++/v1/__string/extern_template_lists.h
+${LLVM_BASE}/include/c++/v1/__support/
+${LLVM_BASE}/include/c++/v1/__support/ibm/
+${LLVM_BASE}/include/c++/v1/__support/ibm/gettod_zos.h
+${LLVM_BASE}/include/c++/v1/__support/ibm/locale_mgmt_zos.h
+${LLVM_BASE}/include/c++/v1/__support/ibm/nanosleep.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__nop_locale_mgmt.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__posix_l_fallback.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__strtonum_fallback.h
+${LLVM_BASE}/include/c++/v1/__system_error/
+${LLVM_BASE}/include/c++/v1/__system_error/errc.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_category.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_code.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_condition.h
+${LLVM_BASE}/include/c++/v1/__system_error/system_error.h
+${LLVM_BASE}/include/c++/v1/__thread/
+${LLVM_BASE}/include/c++/v1/__thread/formatter.h
+${LLVM_BASE}/include/c++/v1/__thread/id.h
+${LLVM_BASE}/include/c++/v1/__thread/jthread.h
+${LLVM_BASE}/include/c++/v1/__thread/poll_with_backoff.h
+${LLVM_BASE}/include/c++/v1/__thread/support/
+${LLVM_BASE}/include/c++/v1/__thread/support.h
+${LLVM_BASE}/include/c++/v1/__thread/support/c11.h
+${LLVM_BASE}/include/c++/v1/__thread/support/external.h
+${LLVM_BASE}/include/c++/v1/__thread/support/pthread.h
+${LLVM_BASE}/include/c++/v1/__thread/support/windows.h
+${LLVM_BASE}/include/c++/v1/__thread/this_thread.h
+${LLVM_BASE}/include/c++/v1/__thread/thread.h
+${LLVM_BASE}/include/c++/v1/__thread/timed_backoff_policy.h
+${LLVM_BASE}/include/c++/v1/__tree
+${LLVM_BASE}/include/c++/v1/__tuple/
+${LLVM_BASE}/include/c++/v1/__tuple/find_index.h
+${LLVM_BASE}/include/c++/v1/__tuple/ignore.h
+${LLVM_BASE}/include/c++/v1/__tuple/make_tuple_types.h
+${LLVM_BASE}/include/c++/v1/__tuple/sfinae_helpers.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_element.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_indices.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like_ext.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like_no_subrange.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_size.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_types.h
+${LLVM_BASE}/include/c++/v1/__type_traits/
+${LLVM_BASE}/include/c++/v1/__type_traits/add_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_cv.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_lvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_rvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_volatile.h
+${LLVM_BASE}/include/c++/v1/__type_traits/aligned_storage.h
+${LLVM_BASE}/include/c++/v1/__type_traits/aligned_union.h
+${LLVM_BASE}/include/c++/v1/__type_traits/alignment_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/can_extract_key.h
+${LLVM_BASE}/include/c++/v1/__type_traits/common_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/common_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/conditional.h
+${LLVM_BASE}/include/c++/v1/__type_traits/conjunction.h
+${LLVM_BASE}/include/c++/v1/__type_traits/copy_cv.h
+${LLVM_BASE}/include/c++/v1/__type_traits/copy_cvref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/datasizeof.h
+${LLVM_BASE}/include/c++/v1/__type_traits/decay.h
+${LLVM_BASE}/include/c++/v1/__type_traits/dependent_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/desugars_to.h
+${LLVM_BASE}/include/c++/v1/__type_traits/disjunction.h
+${LLVM_BASE}/include/c++/v1/__type_traits/enable_if.h
+${LLVM_BASE}/include/c++/v1/__type_traits/extent.h
+${LLVM_BASE}/include/c++/v1/__type_traits/has_unique_object_representation.h
+${LLVM_BASE}/include/c++/v1/__type_traits/has_virtual_destructor.h
+${LLVM_BASE}/include/c++/v1/__type_traits/integral_constant.h
+${LLVM_BASE}/include/c++/v1/__type_traits/invoke.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_abstract.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_aggregate.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_allocator.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_always_bitcastable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_base_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_bounded_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_callable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_char_like_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_class.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_compound.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_constant_evaluated.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_core_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_empty.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_enum.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_execution_policy.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_final.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_floating_point.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_function.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_fundamental.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_implicitly_default_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_integral.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_literal_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_member_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_null_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_object.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_pod.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_polymorphic.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_primary_template.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_referenceable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_same.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_scalar.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_signed.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_signed_integer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_specialization.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_standard_layout.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_swappable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivial.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_copyable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_relocatable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unbounded_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_union.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unsigned.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unsigned_integer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_valid_expansion.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_void.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_volatile.h
+${LLVM_BASE}/include/c++/v1/__type_traits/lazy.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_32_64_or_128_bit.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_const_lvalue_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_signed.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_unsigned.h
+${LLVM_BASE}/include/c++/v1/__type_traits/maybe_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/nat.h
+${LLVM_BASE}/include/c++/v1/__type_traits/negation.h
+${LLVM_BASE}/include/c++/v1/__type_traits/noexcept_move_assign_container.h
+${LLVM_BASE}/include/c++/v1/__type_traits/promote.h
+${LLVM_BASE}/include/c++/v1/__type_traits/rank.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_all_extents.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_const_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_cv.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_cvref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_extent.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_volatile.h
+${LLVM_BASE}/include/c++/v1/__type_traits/result_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/strip_signature.h
+${LLVM_BASE}/include/c++/v1/__type_traits/type_identity.h
+${LLVM_BASE}/include/c++/v1/__type_traits/type_list.h
+${LLVM_BASE}/include/c++/v1/__type_traits/underlying_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/unwrap_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/void_t.h
+${LLVM_BASE}/include/c++/v1/__undef_macros
+${LLVM_BASE}/include/c++/v1/__utility/
+${LLVM_BASE}/include/c++/v1/__utility/as_const.h
+${LLVM_BASE}/include/c++/v1/__utility/as_lvalue.h
+${LLVM_BASE}/include/c++/v1/__utility/auto_cast.h
+${LLVM_BASE}/include/c++/v1/__utility/cmp.h
+${LLVM_BASE}/include/c++/v1/__utility/convert_to_integral.h
+${LLVM_BASE}/include/c++/v1/__utility/declval.h
+${LLVM_BASE}/include/c++/v1/__utility/empty.h
+${LLVM_BASE}/include/c++/v1/__utility/exception_guard.h
+${LLVM_BASE}/include/c++/v1/__utility/exchange.h
+${LLVM_BASE}/include/c++/v1/__utility/forward.h
+${LLVM_BASE}/include/c++/v1/__utility/forward_like.h
+${LLVM_BASE}/include/c++/v1/__utility/in_place.h
+${LLVM_BASE}/include/c++/v1/__utility/integer_sequence.h
+${LLVM_BASE}/include/c++/v1/__utility/is_pointer_in_range.h
+${LLVM_BASE}/include/c++/v1/__utility/is_valid_range.h
+${LLVM_BASE}/include/c++/v1/__utility/move.h
+${LLVM_BASE}/include/c++/v1/__utility/no_destroy.h
+${LLVM_BASE}/include/c++/v1/__utility/pair.h
+${LLVM_BASE}/include/c++/v1/__utility/piecewise_construct.h
+${LLVM_BASE}/include/c++/v1/__utility/priority_tag.h
+${LLVM_BASE}/include/c++/v1/__utility/private_constructor_tag.h
+${LLVM_BASE}/include/c++/v1/__utility/rel_ops.h
+${LLVM_BASE}/include/c++/v1/__utility/small_buffer.h
+${LLVM_BASE}/include/c++/v1/__utility/swap.h
+${LLVM_BASE}/include/c++/v1/__utility/to_underlying.h
+${LLVM_BASE}/include/c++/v1/__utility/unreachable.h
+${LLVM_BASE}/include/c++/v1/__variant/
+${LLVM_BASE}/include/c++/v1/__variant/monostate.h
+${LLVM_BASE}/include/c++/v1/__verbose_abort
+${LLVM_BASE}/include/c++/v1/algorithm
+${LLVM_BASE}/include/c++/v1/any
+${LLVM_BASE}/include/c++/v1/array
+${LLVM_BASE}/include/c++/v1/atomic
+${LLVM_BASE}/include/c++/v1/barrier
+${LLVM_BASE}/include/c++/v1/bit
+${LLVM_BASE}/include/c++/v1/bitset
+${LLVM_BASE}/include/c++/v1/cassert
+${LLVM_BASE}/include/c++/v1/ccomplex
+${LLVM_BASE}/include/c++/v1/cctype
+${LLVM_BASE}/include/c++/v1/cerrno
+${LLVM_BASE}/include/c++/v1/cfenv
+${LLVM_BASE}/include/c++/v1/cfloat
+${LLVM_BASE}/include/c++/v1/charconv
+${LLVM_BASE}/include/c++/v1/chrono
+${LLVM_BASE}/include/c++/v1/cinttypes
+${LLVM_BASE}/include/c++/v1/ciso646
+${LLVM_BASE}/include/c++/v1/climits
+${LLVM_BASE}/include/c++/v1/clocale
+${LLVM_BASE}/include/c++/v1/cmath
+${LLVM_BASE}/include/c++/v1/codecvt
+${LLVM_BASE}/include/c++/v1/compare
+${LLVM_BASE}/include/c++/v1/complex
+${LLVM_BASE}/include/c++/v1/complex.h
+${LLVM_BASE}/include/c++/v1/concepts
+${LLVM_BASE}/include/c++/v1/condition_variable
+${LLVM_BASE}/include/c++/v1/coroutine
+${LLVM_BASE}/include/c++/v1/csetjmp
+${LLVM_BASE}/include/c++/v1/csignal
+${LLVM_BASE}/include/c++/v1/cstdarg
+${LLVM_BASE}/include/c++/v1/cstdbool
+${LLVM_BASE}/include/c++/v1/cstddef
+${LLVM_BASE}/include/c++/v1/cstdint
+${LLVM_BASE}/include/c++/v1/cstdio
+${LLVM_BASE}/include/c++/v1/cstdlib
+${LLVM_BASE}/include/c++/v1/cstring
+${LLVM_BASE}/include/c++/v1/ctgmath
+${LLVM_BASE}/include/c++/v1/ctime
+${LLVM_BASE}/include/c++/v1/ctype.h
+${LLVM_BASE}/include/c++/v1/cuchar
+${LLVM_BASE}/include/c++/v1/cwchar
+${LLVM_BASE}/include/c++/v1/cwctype
+${LLVM_BASE}/include/c++/v1/cxxabi.h
+${LLVM_BASE}/include/c++/v1/deque
+${LLVM_BASE}/include/c++/v1/errno.h
+${LLVM_BASE}/include/c++/v1/exception
+${LLVM_BASE}/include/c++/v1/execution
+${LLVM_BASE}/include/c++/v1/expected
+${LLVM_BASE}/include/c++/v1/experimental/
+${LLVM_BASE}/include/c++/v1/experimental/__config
+${LLVM_BASE}/include/c++/v1/experimental/__simd/
+${LLVM_BASE}/include/c++/v1/experimental/__simd/aligned_tag.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/declaration.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/reference.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/scalar.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/simd.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/simd_mask.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/traits.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/utility.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/vec_ext.h
+${LLVM_BASE}/include/c++/v1/experimental/iterator
+${LLVM_BASE}/include/c++/v1/experimental/memory
+${LLVM_BASE}/include/c++/v1/experimental/propagate_const
+${LLVM_BASE}/include/c++/v1/experimental/simd
+${LLVM_BASE}/include/c++/v1/experimental/type_traits
+${LLVM_BASE}/include/c++/v1/experimental/utility
+${LLVM_BASE}/include/c++/v1/ext/
+${LLVM_BASE}/include/c++/v1/ext/__hash
+${LLVM_BASE}/include/c++/v1/ext/hash_map
+${LLVM_BASE}/include/c++/v1/ext/hash_set
+${LLVM_BASE}/include/c++/v1/fenv.h
+${LLVM_BASE}/include/c++/v1/filesystem
+${LLVM_BASE}/include/c++/v1/float.h
+${LLVM_BASE}/include/c++/v1/format
+${LLVM_BASE}/include/c++/v1/forward_list
+${LLVM_BASE}/include/c++/v1/fstream
+${LLVM_BASE}/include/c++/v1/functional
+${LLVM_BASE}/include/c++/v1/future
+${LLVM_BASE}/include/c++/v1/initializer_list
+${LLVM_BASE}/include/c++/v1/inttypes.h
+${LLVM_BASE}/include/c++/v1/iomanip
+${LLVM_BASE}/include/c++/v1/ios
+${LLVM_BASE}/include/c++/v1/iosfwd
+${LLVM_BASE}/include/c++/v1/iostream
+${LLVM_BASE}/include/c++/v1/istream
+${LLVM_BASE}/include/c++/v1/iterator
+${LLVM_BASE}/include/c++/v1/latch
+${LLVM_BASE}/include/c++/v1/libcxx.imp
+${LLVM_BASE}/include/c++/v1/limits
+${LLVM_BASE}/include/c++/v1/list
+${LLVM_BASE}/include/c++/v1/locale
+${LLVM_BASE}/include/c++/v1/locale.h
+${LLVM_BASE}/include/c++/v1/map
+${LLVM_BASE}/include/c++/v1/math.h
+${LLVM_BASE}/include/c++/v1/mdspan
+${LLVM_BASE}/include/c++/v1/memory
+${LLVM_BASE}/include/c++/v1/memory_resource
+${LLVM_BASE}/include/c++/v1/module.modulemap
+${LLVM_BASE}/include/c++/v1/mutex
+${LLVM_BASE}/include/c++/v1/new
+${LLVM_BASE}/include/c++/v1/numbers
+${LLVM_BASE}/include/c++/v1/numeric
+${LLVM_BASE}/include/c++/v1/optional
+${LLVM_BASE}/include/c++/v1/ostream
+${LLVM_BASE}/include/c++/v1/print
+${LLVM_BASE}/include/c++/v1/queue
+${LLVM_BASE}/include/c++/v1/random
+${LLVM_BASE}/include/c++/v1/ranges
+${LLVM_BASE}/include/c++/v1/ratio
+${LLVM_BASE}/include/c++/v1/regex
+${LLVM_BASE}/include/c++/v1/scoped_allocator
+${LLVM_BASE}/include/c++/v1/semaphore
+${LLVM_BASE}/include/c++/v1/set
+${LLVM_BASE}/include/c++/v1/shared_mutex
+${LLVM_BASE}/include/c++/v1/source_location
+${LLVM_BASE}/include/c++/v1/span
+${LLVM_BASE}/include/c++/v1/sstream
+${LLVM_BASE}/include/c++/v1/stack
+${LLVM_BASE}/include/c++/v1/stdatomic.h
+${LLVM_BASE}/include/c++/v1/stdbool.h
+${LLVM_BASE}/include/c++/v1/stddef.h
+${LLVM_BASE}/include/c++/v1/stdexcept
+${LLVM_BASE}/include/c++/v1/stdint.h
+${LLVM_BASE}/include/c++/v1/stdio.h
+${LLVM_BASE}/include/c++/v1/stdlib.h
+${LLVM_BASE}/include/c++/v1/stop_token
+${LLVM_BASE}/include/c++/v1/streambuf
+${LLVM_BASE}/include/c++/v1/string
+${LLVM_BASE}/include/c++/v1/string.h
+${LLVM_BASE}/include/c++/v1/string_view
+${LLVM_BASE}/include/c++/v1/strstream
+${LLVM_BASE}/include/c++/v1/syncstream
+${LLVM_BASE}/include/c++/v1/system_error
+${LLVM_BASE}/include/c++/v1/tgmath.h
+${LLVM_BASE}/include/c++/v1/thread
+${LLVM_BASE}/include/c++/v1/tuple
+${LLVM_BASE}/include/c++/v1/type_traits
+${LLVM_BASE}/include/c++/v1/typeindex
+${LLVM_BASE}/include/c++/v1/typeinfo
+${LLVM_BASE}/include/c++/v1/uchar.h
+${LLVM_BASE}/include/c++/v1/unordered_map
+${LLVM_BASE}/include/c++/v1/unordered_set
+${LLVM_BASE}/include/c++/v1/utility
+${LLVM_BASE}/include/c++/v1/valarray
+${LLVM_BASE}/include/c++/v1/variant
+${LLVM_BASE}/include/c++/v1/vector
+${LLVM_BASE}/include/c++/v1/version
+${LLVM_BASE}/include/c++/v1/wchar.h
+${LLVM_BASE}/include/c++/v1/wctype.h
+${LLVM_BASE}/lib/libc++.modules.json
+${LLVM_BASE}/lib/libec++.so
+@lib ${LLVM_BASE}/lib/libec++.so.${LIBec++_VERSION}
+@lib ${LLVM_BASE}/lib/libec++abi.so.${LIBec++abi_VERSION}
+@static-lib ${LLVM_BASE}/lib/libec++experimental.a
+${LLVM_BASE}/share/libc++/
+${LLVM_BASE}/share/libc++/v1/
+${LLVM_BASE}/share/libc++/v1/std/
+${LLVM_BASE}/share/libc++/v1/std.compat/
+${LLVM_BASE}/share/libc++/v1/std.compat.cppm
+${LLVM_BASE}/share/libc++/v1/std.compat/cassert.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cctype.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cerrno.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cfenv.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cfloat.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cinttypes.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/climits.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/clocale.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cmath.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/csetjmp.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/csignal.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdarg.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstddef.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdint.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdio.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdlib.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstring.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/ctime.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cuchar.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cwchar.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cwctype.inc
+${LLVM_BASE}/share/libc++/v1/std.cppm
+${LLVM_BASE}/share/libc++/v1/std/algorithm.inc
+${LLVM_BASE}/share/libc++/v1/std/any.inc
+${LLVM_BASE}/share/libc++/v1/std/array.inc
+${LLVM_BASE}/share/libc++/v1/std/atomic.inc
+${LLVM_BASE}/share/libc++/v1/std/barrier.inc
+${LLVM_BASE}/share/libc++/v1/std/bit.inc
+${LLVM_BASE}/share/libc++/v1/std/bitset.inc
+${LLVM_BASE}/share/libc++/v1/std/cassert.inc
+${LLVM_BASE}/share/libc++/v1/std/cctype.inc
+${LLVM_BASE}/share/libc++/v1/std/cerrno.inc
+${LLVM_BASE}/share/libc++/v1/std/cfenv.inc
+${LLVM_BASE}/share/libc++/v1/std/cfloat.inc
+${LLVM_BASE}/share/libc++/v1/std/charconv.inc
+${LLVM_BASE}/share/libc++/v1/std/chrono.inc
+${LLVM_BASE}/share/libc++/v1/std/cinttypes.inc
+${LLVM_BASE}/share/libc++/v1/std/climits.inc
+${LLVM_BASE}/share/libc++/v1/std/clocale.inc
+${LLVM_BASE}/share/libc++/v1/std/cmath.inc
+${LLVM_BASE}/share/libc++/v1/std/codecvt.inc
+${LLVM_BASE}/share/libc++/v1/std/compare.inc
+${LLVM_BASE}/share/libc++/v1/std/complex.inc
+${LLVM_BASE}/share/libc++/v1/std/concepts.inc
+${LLVM_BASE}/share/libc++/v1/std/condition_variable.inc
+${LLVM_BASE}/share/libc++/v1/std/coroutine.inc
+${LLVM_BASE}/share/libc++/v1/std/csetjmp.inc
+${LLVM_BASE}/share/libc++/v1/std/csignal.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdarg.inc
+${LLVM_BASE}/share/libc++/v1/std/cstddef.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdint.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdio.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdlib.inc
+${LLVM_BASE}/share/libc++/v1/std/cstring.inc
+${LLVM_BASE}/share/libc++/v1/std/ctime.inc
+${LLVM_BASE}/share/libc++/v1/std/cuchar.inc
+${LLVM_BASE}/share/libc++/v1/std/cwchar.inc
+${LLVM_BASE}/share/libc++/v1/std/cwctype.inc
+${LLVM_BASE}/share/libc++/v1/std/deque.inc
+${LLVM_BASE}/share/libc++/v1/std/exception.inc
+${LLVM_BASE}/share/libc++/v1/std/execution.inc
+${LLVM_BASE}/share/libc++/v1/std/expected.inc
+${LLVM_BASE}/share/libc++/v1/std/filesystem.inc
+${LLVM_BASE}/share/libc++/v1/std/flat_map.inc
+${LLVM_BASE}/share/libc++/v1/std/flat_set.inc
+${LLVM_BASE}/share/libc++/v1/std/format.inc
+${LLVM_BASE}/share/libc++/v1/std/forward_list.inc
+${LLVM_BASE}/share/libc++/v1/std/fstream.inc
+${LLVM_BASE}/share/libc++/v1/std/functional.inc
+${LLVM_BASE}/share/libc++/v1/std/future.inc
+${LLVM_BASE}/share/libc++/v1/std/generator.inc
+${LLVM_BASE}/share/libc++/v1/std/hazard_pointer.inc
+${LLVM_BASE}/share/libc++/v1/std/initializer_list.inc
+${LLVM_BASE}/share/libc++/v1/std/iomanip.inc
+${LLVM_BASE}/share/libc++/v1/std/ios.inc
+${LLVM_BASE}/share/libc++/v1/std/iosfwd.inc
+${LLVM_BASE}/share/libc++/v1/std/iostream.inc
+${LLVM_BASE}/share/libc++/v1/std/istream.inc
+${LLVM_BASE}/share/libc++/v1/std/iterator.inc
+${LLVM_BASE}/share/libc++/v1/std/latch.inc
+${LLVM_BASE}/share/libc++/v1/std/limits.inc
+${LLVM_BASE}/share/libc++/v1/std/list.inc
+${LLVM_BASE}/share/libc++/v1/std/locale.inc
+${LLVM_BASE}/share/libc++/v1/std/map.inc
+${LLVM_BASE}/share/libc++/v1/std/mdspan.inc
+${LLVM_BASE}/share/libc++/v1/std/memory.inc
+${LLVM_BASE}/share/libc++/v1/std/memory_resource.inc
+${LLVM_BASE}/share/libc++/v1/std/mutex.inc
+${LLVM_BASE}/share/libc++/v1/std/new.inc
+${LLVM_BASE}/share/libc++/v1/std/numbers.inc
+${LLVM_BASE}/share/libc++/v1/std/numeric.inc
+${LLVM_BASE}/share/libc++/v1/std/optional.inc
+${LLVM_BASE}/share/libc++/v1/std/ostream.inc
+${LLVM_BASE}/share/libc++/v1/std/print.inc
+${LLVM_BASE}/share/libc++/v1/std/queue.inc
+${LLVM_BASE}/share/libc++/v1/std/random.inc
+${LLVM_BASE}/share/libc++/v1/std/ranges.inc
+${LLVM_BASE}/share/libc++/v1/std/ratio.inc
+${LLVM_BASE}/share/libc++/v1/std/rcu.inc
+${LLVM_BASE}/share/libc++/v1/std/regex.inc
+${LLVM_BASE}/share/libc++/v1/std/scoped_allocator.inc
+${LLVM_BASE}/share/libc++/v1/std/semaphore.inc
+${LLVM_BASE}/share/libc++/v1/std/set.inc
+${LLVM_BASE}/share/libc++/v1/std/shared_mutex.inc
+${LLVM_BASE}/share/libc++/v1/std/source_location.inc
+${LLVM_BASE}/share/libc++/v1/std/span.inc
+${LLVM_BASE}/share/libc++/v1/std/spanstream.inc
+${LLVM_BASE}/share/libc++/v1/std/sstream.inc
+${LLVM_BASE}/share/libc++/v1/std/stack.inc
+${LLVM_BASE}/share/libc++/v1/std/stacktrace.inc
+${LLVM_BASE}/share/libc++/v1/std/stdexcept.inc
+${LLVM_BASE}/share/libc++/v1/std/stdfloat.inc
+${LLVM_BASE}/share/libc++/v1/std/stop_token.inc
+${LLVM_BASE}/share/libc++/v1/std/streambuf.inc
+${LLVM_BASE}/share/libc++/v1/std/string.inc
+${LLVM_BASE}/share/libc++/v1/std/string_view.inc
+${LLVM_BASE}/share/libc++/v1/std/strstream.inc
+${LLVM_BASE}/share/libc++/v1/std/syncstream.inc
+${LLVM_BASE}/share/libc++/v1/std/system_error.inc
+${LLVM_BASE}/share/libc++/v1/std/text_encoding.inc
+${LLVM_BASE}/share/libc++/v1/std/thread.inc
+${LLVM_BASE}/share/libc++/v1/std/tuple.inc
+${LLVM_BASE}/share/libc++/v1/std/type_traits.inc
+${LLVM_BASE}/share/libc++/v1/std/typeindex.inc
+${LLVM_BASE}/share/libc++/v1/std/typeinfo.inc
+${LLVM_BASE}/share/libc++/v1/std/unordered_map.inc
+${LLVM_BASE}/share/libc++/v1/std/unordered_set.inc
+${LLVM_BASE}/share/libc++/v1/std/utility.inc
+${LLVM_BASE}/share/libc++/v1/std/valarray.inc
+${LLVM_BASE}/share/libc++/v1/std/variant.inc
+${LLVM_BASE}/share/libc++/v1/std/vector.inc
+${LLVM_BASE}/share/libc++/v1/std/version.inc
Index: devel/llvm/20/Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/20/Makefile,v
diff -u -p -u -r1.1.1.1 Makefile
--- devel/llvm/20/Makefile	20 May 2025 03:29:44 -0000	1.1.1.1
+++ devel/llvm/20/Makefile	21 May 2025 01:58:01 -0000
@@ -7,6 +7,8 @@ SHARED_LIBS +=	LLVM		0.0 \
 		Remarks		0.0 \
 		clang-cpp	0.0 \
 		clang		0.0 \
+		ec++		0.0 \
+		ec++abi		0.0 \
 		lldb		0.0
 
 # Apache License v2.0 with LLVM Exceptions
Index: devel/llvm/20/patches/patch-libcxx_src_CMakeLists_txt
===================================================================
RCS file: devel/llvm/20/patches/patch-libcxx_src_CMakeLists_txt
diff -N devel/llvm/20/patches/patch-libcxx_src_CMakeLists_txt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/llvm/20/patches/patch-libcxx_src_CMakeLists_txt	21 May 2025 01:58:01 -0000
@@ -0,0 +1,12 @@
+Index: libcxx/src/CMakeLists.txt
+--- libcxx/src/CMakeLists.txt.orig
++++ libcxx/src/CMakeLists.txt
+@@ -349,7 +349,7 @@ endif()
+ set_target_properties(cxx_experimental
+   PROPERTIES
+     COMPILE_FLAGS "${LIBCXX_COMPILE_FLAGS}"
+-    OUTPUT_NAME   "c++experimental"
++    OUTPUT_NAME   "${LIBCXX_SHARED_OUTPUT_NAME}experimental"
+ )
+ cxx_add_common_build_flags(cxx_experimental)
+ target_compile_options(cxx_experimental PUBLIC -D_LIBCPP_ENABLE_EXPERIMENTAL)
Index: devel/llvm/20/pkg/PLIST-libcxx
===================================================================
RCS file: devel/llvm/20/pkg/PLIST-libcxx
diff -N devel/llvm/20/pkg/PLIST-libcxx
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/llvm/20/pkg/PLIST-libcxx	21 May 2025 01:58:01 -0000
@@ -0,0 +1,2334 @@
+@option no-default-conflict
+@option is-branch
+@conflict libcxx-${LLVM_PKGSPEC}
+${LLVM_BASE}/include/c++/
+${LLVM_BASE}/include/c++/v1/
+${LLVM_BASE}/include/c++/v1/__algorithm/
+${LLVM_BASE}/include/c++/v1/__algorithm/adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/all_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/any_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/binary_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/clamp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/comp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_move_common.h
+${LLVM_BASE}/include/c++/v1/__algorithm/copy_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/count.h
+${LLVM_BASE}/include/c++/v1/__algorithm/count_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/equal.h
+${LLVM_BASE}/include/c++/v1/__algorithm/equal_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/fill.h
+${LLVM_BASE}/include/c++/v1/__algorithm/fill_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_end.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_first_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_if_not.h
+${LLVM_BASE}/include/c++/v1/__algorithm/find_segment_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/for_each_segment.h
+${LLVM_BASE}/include/c++/v1/__algorithm/generate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/generate_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/half_positive.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_found_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_fun_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_in_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_in_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_out_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/in_out_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/includes.h
+${LLVM_BASE}/include/c++/v1/__algorithm/inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_sorted.h
+${LLVM_BASE}/include/c++/v1/__algorithm/is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/iterator_operations.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lexicographical_compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__algorithm/lower_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/make_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/make_projected.h
+${LLVM_BASE}/include/c++/v1/__algorithm/max.h
+${LLVM_BASE}/include/c++/v1/__algorithm/max_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/min_max_result.h
+${LLVM_BASE}/include/c++/v1/__algorithm/minmax.h
+${LLVM_BASE}/include/c++/v1/__algorithm/minmax_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/mismatch.h
+${LLVM_BASE}/include/c++/v1/__algorithm/move.h
+${LLVM_BASE}/include/c++/v1/__algorithm/move_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/next_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/none_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/nth_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partial_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/partition_point.h
+${LLVM_BASE}/include/c++/v1/__algorithm/pop_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/pstl.h
+${LLVM_BASE}/include/c++/v1/__algorithm/push_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/radix_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_all_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_any_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_binary_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_clamp.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_contains.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_contains_subrange.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_copy_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_count.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_count_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_ends_with.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_equal.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_equal_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_fill.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_fill_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_end.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_first_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_if_not.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_find_last.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_fold.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_for_each.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_for_each_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_generate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_generate_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_includes.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_sorted.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_iterator_concept.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_lower_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_make_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_max.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_max_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_merge.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_min.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_min_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_minmax.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_minmax_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_mismatch.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_move.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_move_backward.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_next_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_none_of.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_nth_element.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partial_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_partition_point.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_pop_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_push_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_remove_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_replace_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_reverse.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_rotate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sample.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_search_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_intersection.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_set_union.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_shuffle.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_sort_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_stable_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_stable_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_starts_with.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_transform.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_unique.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_unique_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/ranges_upper_bound.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/remove_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/replace_if.h
+${LLVM_BASE}/include/c++/v1/__algorithm/reverse.h
+${LLVM_BASE}/include/c++/v1/__algorithm/reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/rotate.h
+${LLVM_BASE}/include/c++/v1/__algorithm/rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sample.h
+${LLVM_BASE}/include/c++/v1/__algorithm/search.h
+${LLVM_BASE}/include/c++/v1/__algorithm/search_n.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_intersection.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__algorithm/set_union.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shift_left.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shift_right.h
+${LLVM_BASE}/include/c++/v1/__algorithm/shuffle.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sift_down.h
+${LLVM_BASE}/include/c++/v1/__algorithm/simd_utils.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/sort_heap.h
+${LLVM_BASE}/include/c++/v1/__algorithm/stable_partition.h
+${LLVM_BASE}/include/c++/v1/__algorithm/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__algorithm/swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__algorithm/three_way_comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__algorithm/transform.h
+${LLVM_BASE}/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unique.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unique_copy.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unwrap_iter.h
+${LLVM_BASE}/include/c++/v1/__algorithm/unwrap_range.h
+${LLVM_BASE}/include/c++/v1/__algorithm/upper_bound.h
+${LLVM_BASE}/include/c++/v1/__assert
+${LLVM_BASE}/include/c++/v1/__assertion_handler
+${LLVM_BASE}/include/c++/v1/__atomic/
+${LLVM_BASE}/include/c++/v1/__atomic/aliases.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_flag.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_init.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_lock_free.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_ref.h
+${LLVM_BASE}/include/c++/v1/__atomic/atomic_sync.h
+${LLVM_BASE}/include/c++/v1/__atomic/check_memory_order.h
+${LLVM_BASE}/include/c++/v1/__atomic/contention_t.h
+${LLVM_BASE}/include/c++/v1/__atomic/fence.h
+${LLVM_BASE}/include/c++/v1/__atomic/is_always_lock_free.h
+${LLVM_BASE}/include/c++/v1/__atomic/kill_dependency.h
+${LLVM_BASE}/include/c++/v1/__atomic/memory_order.h
+${LLVM_BASE}/include/c++/v1/__atomic/support/
+${LLVM_BASE}/include/c++/v1/__atomic/support.h
+${LLVM_BASE}/include/c++/v1/__atomic/support/c11.h
+${LLVM_BASE}/include/c++/v1/__atomic/support/gcc.h
+${LLVM_BASE}/include/c++/v1/__atomic/to_gcc_order.h
+${LLVM_BASE}/include/c++/v1/__bit/
+${LLVM_BASE}/include/c++/v1/__bit/bit_cast.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_ceil.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_floor.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_log2.h
+${LLVM_BASE}/include/c++/v1/__bit/bit_width.h
+${LLVM_BASE}/include/c++/v1/__bit/blsr.h
+${LLVM_BASE}/include/c++/v1/__bit/byteswap.h
+${LLVM_BASE}/include/c++/v1/__bit/countl.h
+${LLVM_BASE}/include/c++/v1/__bit/countr.h
+${LLVM_BASE}/include/c++/v1/__bit/endian.h
+${LLVM_BASE}/include/c++/v1/__bit/has_single_bit.h
+${LLVM_BASE}/include/c++/v1/__bit/invert_if.h
+${LLVM_BASE}/include/c++/v1/__bit/popcount.h
+${LLVM_BASE}/include/c++/v1/__bit/rotate.h
+${LLVM_BASE}/include/c++/v1/__bit_reference
+${LLVM_BASE}/include/c++/v1/__charconv/
+${LLVM_BASE}/include/c++/v1/__charconv/chars_format.h
+${LLVM_BASE}/include/c++/v1/__charconv/from_chars_floating_point.h
+${LLVM_BASE}/include/c++/v1/__charconv/from_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__charconv/from_chars_result.h
+${LLVM_BASE}/include/c++/v1/__charconv/tables.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_base_10.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_floating_point.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__charconv/to_chars_result.h
+${LLVM_BASE}/include/c++/v1/__charconv/traits.h
+${LLVM_BASE}/include/c++/v1/__chrono/
+${LLVM_BASE}/include/c++/v1/__chrono/calendar.h
+${LLVM_BASE}/include/c++/v1/__chrono/concepts.h
+${LLVM_BASE}/include/c++/v1/__chrono/convert_to_timespec.h
+${LLVM_BASE}/include/c++/v1/__chrono/convert_to_tm.h
+${LLVM_BASE}/include/c++/v1/__chrono/day.h
+${LLVM_BASE}/include/c++/v1/__chrono/duration.h
+${LLVM_BASE}/include/c++/v1/__chrono/exception.h
+${LLVM_BASE}/include/c++/v1/__chrono/file_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/formatter.h
+${LLVM_BASE}/include/c++/v1/__chrono/hh_mm_ss.h
+${LLVM_BASE}/include/c++/v1/__chrono/high_resolution_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/leap_second.h
+${LLVM_BASE}/include/c++/v1/__chrono/literals.h
+${LLVM_BASE}/include/c++/v1/__chrono/local_info.h
+${LLVM_BASE}/include/c++/v1/__chrono/month.h
+${LLVM_BASE}/include/c++/v1/__chrono/month_weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/monthday.h
+${LLVM_BASE}/include/c++/v1/__chrono/ostream.h
+${LLVM_BASE}/include/c++/v1/__chrono/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__chrono/statically_widen.h
+${LLVM_BASE}/include/c++/v1/__chrono/steady_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/sys_info.h
+${LLVM_BASE}/include/c++/v1/__chrono/system_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_point.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_zone.h
+${LLVM_BASE}/include/c++/v1/__chrono/time_zone_link.h
+${LLVM_BASE}/include/c++/v1/__chrono/tzdb.h
+${LLVM_BASE}/include/c++/v1/__chrono/tzdb_list.h
+${LLVM_BASE}/include/c++/v1/__chrono/utc_clock.h
+${LLVM_BASE}/include/c++/v1/__chrono/weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/year.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month_day.h
+${LLVM_BASE}/include/c++/v1/__chrono/year_month_weekday.h
+${LLVM_BASE}/include/c++/v1/__chrono/zoned_time.h
+${LLVM_BASE}/include/c++/v1/__compare/
+${LLVM_BASE}/include/c++/v1/__compare/common_comparison_category.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_partial_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_strong_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_three_way_result.h
+${LLVM_BASE}/include/c++/v1/__compare/compare_weak_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__compare/is_eq.h
+${LLVM_BASE}/include/c++/v1/__compare/ordering.h
+${LLVM_BASE}/include/c++/v1/__compare/partial_order.h
+${LLVM_BASE}/include/c++/v1/__compare/strong_order.h
+${LLVM_BASE}/include/c++/v1/__compare/synth_three_way.h
+${LLVM_BASE}/include/c++/v1/__compare/three_way_comparable.h
+${LLVM_BASE}/include/c++/v1/__compare/weak_order.h
+${LLVM_BASE}/include/c++/v1/__concepts/
+${LLVM_BASE}/include/c++/v1/__concepts/arithmetic.h
+${LLVM_BASE}/include/c++/v1/__concepts/assignable.h
+${LLVM_BASE}/include/c++/v1/__concepts/boolean_testable.h
+${LLVM_BASE}/include/c++/v1/__concepts/class_or_enum.h
+${LLVM_BASE}/include/c++/v1/__concepts/common_reference_with.h
+${LLVM_BASE}/include/c++/v1/__concepts/common_with.h
+${LLVM_BASE}/include/c++/v1/__concepts/constructible.h
+${LLVM_BASE}/include/c++/v1/__concepts/convertible_to.h
+${LLVM_BASE}/include/c++/v1/__concepts/copyable.h
+${LLVM_BASE}/include/c++/v1/__concepts/derived_from.h
+${LLVM_BASE}/include/c++/v1/__concepts/destructible.h
+${LLVM_BASE}/include/c++/v1/__concepts/different_from.h
+${LLVM_BASE}/include/c++/v1/__concepts/equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__concepts/invocable.h
+${LLVM_BASE}/include/c++/v1/__concepts/movable.h
+${LLVM_BASE}/include/c++/v1/__concepts/predicate.h
+${LLVM_BASE}/include/c++/v1/__concepts/regular.h
+${LLVM_BASE}/include/c++/v1/__concepts/relation.h
+${LLVM_BASE}/include/c++/v1/__concepts/same_as.h
+${LLVM_BASE}/include/c++/v1/__concepts/semiregular.h
+${LLVM_BASE}/include/c++/v1/__concepts/swappable.h
+${LLVM_BASE}/include/c++/v1/__concepts/totally_ordered.h
+${LLVM_BASE}/include/c++/v1/__condition_variable/
+${LLVM_BASE}/include/c++/v1/__condition_variable/condition_variable.h
+${LLVM_BASE}/include/c++/v1/__config
+${LLVM_BASE}/include/c++/v1/__config_site
+${LLVM_BASE}/include/c++/v1/__configuration/
+${LLVM_BASE}/include/c++/v1/__configuration/abi.h
+${LLVM_BASE}/include/c++/v1/__configuration/availability.h
+${LLVM_BASE}/include/c++/v1/__configuration/compiler.h
+${LLVM_BASE}/include/c++/v1/__configuration/language.h
+${LLVM_BASE}/include/c++/v1/__configuration/platform.h
+${LLVM_BASE}/include/c++/v1/__coroutine/
+${LLVM_BASE}/include/c++/v1/__coroutine/coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__coroutine/coroutine_traits.h
+${LLVM_BASE}/include/c++/v1/__coroutine/noop_coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__coroutine/trivial_awaitables.h
+${LLVM_BASE}/include/c++/v1/__cstddef/
+${LLVM_BASE}/include/c++/v1/__cstddef/byte.h
+${LLVM_BASE}/include/c++/v1/__cstddef/max_align_t.h
+${LLVM_BASE}/include/c++/v1/__cstddef/nullptr_t.h
+${LLVM_BASE}/include/c++/v1/__cstddef/ptrdiff_t.h
+${LLVM_BASE}/include/c++/v1/__cstddef/size_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/all_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/any_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/binary_search.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/clamp.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/comp.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/copy_backward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/copy_move_common.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/copy_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/count.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/count_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/equal.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/equal_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/fill.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/fill_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find_end.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find_first_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find_if_not.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/find_segment_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/fold.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/for_each.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/for_each_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/for_each_segment.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/generate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/generate_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/half_positive.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_found_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_fun_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_in_out_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_in_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_out_out_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/in_out_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/includes.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_sorted.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/iterator_operations.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/lexicographical_compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/lower_bound.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/make_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/make_projected.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/max.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/max_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/merge.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/min.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/min_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/min_max_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/minmax.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/minmax_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/mismatch.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/move.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/move_backward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/next_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/none_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/nth_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/partial_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/partition.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/partition_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/partition_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/pop_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/pstl.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/push_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_adjacent_find.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_all_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_any_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_binary_search.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_clamp.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_contains.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_contains_subrange.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_copy_backward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_copy_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_count.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_count_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_ends_with.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_equal.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_equal_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_fill.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_fill_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find_end.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find_first_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find_if_not.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_find_last.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_for_each.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_for_each_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_generate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_generate_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_includes.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_inplace_merge.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_heap_until.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_partitioned.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_sorted.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_is_sorted_until.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_iterator_concept.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_lexicographical_compare.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_lower_bound.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_make_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_max.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_max_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_merge.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_min.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_min_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_minmax.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_minmax_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_mismatch.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_move.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_move_backward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_next_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_none_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_nth_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_partial_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_partial_sort_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_partition.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_partition_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_partition_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_pop_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_prev_permutation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_push_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_remove.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_remove_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_remove_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_replace.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_replace_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_replace_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_reverse.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_rotate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_sample.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_search.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_search_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_set_difference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_set_intersection.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_set_union.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_shuffle.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_sort_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_stable_partition.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_stable_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_starts_with.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_transform.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_unique.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_unique_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/ranges_upper_bound.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/remove.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/remove_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/remove_copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/remove_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/replace.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/replace_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/replace_copy_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/replace_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/reverse.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/reverse_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/rotate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/rotate_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/sample.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/search.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/search_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/set_difference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/set_intersection.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/set_symmetric_difference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/set_union.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/shift_left.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/shift_right.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/shuffle.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/sift_down.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/simd_utils.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/sort_heap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/stable_partition.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/swap_ranges.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/three_way_comp_ref_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/transform.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/uniform_random_bit_generator_adaptor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/unique.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/unique_copy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/unwrap_iter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/unwrap_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__algorithm/upper_bound.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__assert
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/aliases.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_base.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_flag.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_init.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_lock_free.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_ref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/atomic_sync.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/check_memory_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/contention_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/cxx_atomic_impl.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/fence.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/is_always_lock_free.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/kill_dependency.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/memory_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__atomic/to_gcc_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/bit_cast.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/bit_ceil.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/bit_floor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/bit_log2.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/bit_width.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/blsr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/byteswap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/countl.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/countr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/endian.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/has_single_bit.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/invert_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/popcount.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit/rotate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__bit_reference
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/chars_format.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/from_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/from_chars_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/tables.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/to_chars.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/to_chars_base_10.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/to_chars_floating_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/to_chars_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/to_chars_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__charconv/traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/calendar.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/convert_to_timespec.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/convert_to_tm.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/day.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/duration.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/exception.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/file_clock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/formatter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/hh_mm_ss.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/high_resolution_clock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/leap_second.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/literals.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/local_info.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/month.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/month_weekday.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/monthday.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/ostream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/statically_widen.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/steady_clock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/sys_info.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/system_clock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/time_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/time_zone.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/time_zone_link.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/tzdb.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/tzdb_list.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/weekday.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/year.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/year_month.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/year_month_day.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/year_month_weekday.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__chrono/zoned_time.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/common_comparison_category.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/compare_partial_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/compare_strong_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/compare_three_way.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/compare_three_way_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/compare_weak_order_fallback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/is_eq.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/ordering.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/partial_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/strong_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/synth_three_way.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/three_way_comparable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__compare/weak_order.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/arithmetic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/assignable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/boolean_testable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/class_or_enum.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/common_reference_with.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/common_with.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/constructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/convertible_to.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/copyable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/derived_from.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/destructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/different_from.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/invocable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/movable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/predicate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/regular.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/relation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/same_as.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/semiregular.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/swappable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__concepts/totally_ordered.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__condition_variable/
+${LLVM_BASE}/include/c++/v1/__cxx03/__condition_variable/condition_variable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__config
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/abi.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/availability.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/compiler.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/config_site_shim.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/language.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__configuration/platform.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__coroutine/
+${LLVM_BASE}/include/c++/v1/__cxx03/__coroutine/coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__coroutine/coroutine_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__coroutine/noop_coroutine_handle.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__coroutine/trivial_awaitables.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__debug_utils/
+${LLVM_BASE}/include/c++/v1/__cxx03/__debug_utils/randomize_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__debug_utils/sanitizers.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__debug_utils/strict_weak_ordering_check.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/exception.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/exception_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/nested_exception.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/operations.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__exception/terminate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__expected/
+${LLVM_BASE}/include/c++/v1/__cxx03/__expected/bad_expected_access.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__expected/expected.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__expected/unexpect.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__expected/unexpected.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/copy_options.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/directory_entry.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/directory_options.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/file_status.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/file_time_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/file_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/filesystem_error.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/operations.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/path.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/path_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/perm_options.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/perms.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/recursive_directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/space_info.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__filesystem/u8path.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/buffer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/container_adaptor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/enable_insertable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/escaped_output_table.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/extended_grapheme_cluster_table.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_arg.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_arg_store.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_args.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_context.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_error.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_parse_context.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_string.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/format_to_n_result.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_bool.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_char.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_floating_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_integer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_output.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_string.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/formatter_tuple.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/indic_conjunct_break_table.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/range_default_formatter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/range_formatter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/unicode.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/width_estimation_table.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__format/write_escaped.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/binary_function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/binary_negate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/bind.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/bind_back.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/bind_front.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/binder1st.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/binder2nd.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/boyer_moore_searcher.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/compose.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/default_searcher.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/hash.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/identity.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/invoke.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/is_transparent.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/mem_fn.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/mem_fun_ref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/not_fn.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/operations.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/perfect_forward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/pointer_to_binary_function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/pointer_to_unary_function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/ranges_operations.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/unary_function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/unary_negate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__functional/weak_result_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/array.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/bit_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/complex.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/deque.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/format.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/fstream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/functional.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/ios.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/istream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/mdspan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/memory.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/ostream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/pair.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/queue.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/span.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/sstream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/stack.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/streambuf.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/string.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/string_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/subrange.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/tuple.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__fwd/vector.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__hash_table
+${LLVM_BASE}/include/c++/v1/__cxx03/__ios/
+${LLVM_BASE}/include/c++/v1/__cxx03/__ios/fpos.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/access.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/advance.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/aliasing_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/back_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/bounded_iter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/common_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/counted_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/cpp17_iterator_concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/data.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/default_sentinel.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/distance.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/empty.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/erase_if_container.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/front_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/incrementable_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/indirectly_comparable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/istream_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/istreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/iter_move.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/iterator_with_data.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/mergeable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/move_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/move_sentinel.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/next.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/ostream_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/ostreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/permutable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/prev.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/projected.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/ranges_iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/readable_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/reverse_access.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/reverse_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/segmented_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/size.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/sortable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/unreachable_sentinel.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__iterator/wrap_iter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/android.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/bsd_locale_defaults.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/bsd_locale_fallbacks.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/fuchsia.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/ibm.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/locale_guard.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/musl.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/newlib.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/openbsd.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__locale_dir/locale_base_api/win32.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/abs.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/copysign.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/error_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/exponential_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/fdim.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/fma.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/gamma.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/hypot.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/inverse_hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/inverse_trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/logarithms.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/min_max.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/modulo.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/remainder.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/roots.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/rounding_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/special_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__math/trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/default_accessor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/extents.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/layout_left.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/layout_right.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/layout_stride.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mdspan/mdspan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/addressof.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/align.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/aligned_alloc.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocate_at_least.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocation_guard.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocator_arg_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocator_destructor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/allocator_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/assume_aligned.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/auto_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/builtin_new_allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/compressed_pair.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/construct_at.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/destruct_n.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/inout_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/out_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/pointer_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/ranges_construct_at.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/ranges_uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/raw_storage_iterator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/swap_allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/temp_value.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/temporary_buffer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/unique_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/uses_allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/uses_allocator_construction.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory/voidify.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/monotonic_buffer_resource.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/polymorphic_allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/pool_options.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/synchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__memory_resource/unsynchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/lock_guard.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/mutex.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/once_flag.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/tag_types.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__mutex/unique_lock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__node_handle
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/accumulate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/adjacent_difference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/gcd_lcm.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/inner_product.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/iota.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/midpoint.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/partial_sum.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/pstl.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/reduce.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/saturation_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/transform_exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/transform_inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__numeric/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ostream/
+${LLVM_BASE}/include/c++/v1/__cxx03/__ostream/basic_ostream.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ostream/print.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backend.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backend_fwd.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backends/
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backends/default.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backends/libdispatch.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backends/serial.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/backends/std_thread.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/any_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/cpu_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/fill.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/find_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/for_each.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/merge.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/transform.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/cpu_algos/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/dispatch.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__pstl/handle_exception.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/bernoulli_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/cauchy_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/chi_squared_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/clamp_to_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/default_random_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/discard_block_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/discrete_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/exponential_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/extreme_value_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/fisher_f_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/gamma_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/generate_canonical.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/geometric_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/independent_bits_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/is_seed_sequence.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/is_valid.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/knuth_b.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/linear_congruential_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/log2.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/lognormal_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/mersenne_twister_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/negative_binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/normal_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/piecewise_constant_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/piecewise_linear_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/poisson_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/random_device.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/ranlux.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/seed_seq.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/shuffle_order_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/student_t_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/subtract_with_carry_engine.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/uniform_int_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/uniform_random_bit_generator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/uniform_real_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__random/weibull_distribution.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/access.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/all.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/as_rvalue_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/chunk_by_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/common_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/concepts.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/container_compatible_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/counted.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/dangling.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/data.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/drop_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/drop_while_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/elements_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/empty.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/empty_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/enable_borrowed_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/enable_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/filter_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/from_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/iota_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/istream_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/join_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/lazy_split_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/movable_box.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/non_propagating_cache.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/owning_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/range_adaptor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/rbegin.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/ref_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/rend.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/repeat_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/reverse_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/single_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/size.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/split_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/subrange.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/take_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/take_while_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/to.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/transform_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/view_interface.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/views.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__ranges/zip_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__split_buffer
+${LLVM_BASE}/include/c++/v1/__cxx03/__std_clang_module
+${LLVM_BASE}/include/c++/v1/__cxx03/__std_mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/atomic_unique_lock.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/intrusive_list_view.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/intrusive_shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/stop_callback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/stop_source.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/stop_state.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__stop_token/stop_token.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__string/
+${LLVM_BASE}/include/c++/v1/__cxx03/__string/char_traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__string/constexpr_c_functions.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__string/extern_template_lists.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/ibm/
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/ibm/gettod_zos.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/ibm/locale_mgmt_zos.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/ibm/nanosleep.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/xlocale/
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/xlocale/__nop_locale_mgmt.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/xlocale/__posix_l_fallback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__support/xlocale/__strtonum_fallback.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/errc.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/error_category.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/error_code.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/error_condition.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__system_error/system_error.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/formatter.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/id.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/jthread.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/poll_with_backoff.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support/
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support/c11.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support/external.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support/pthread.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/support/windows.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/this_thread.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/thread.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__thread/timed_backoff_policy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tree
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/find_index.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/ignore.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/make_tuple_types.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/sfinae_helpers.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_element.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_indices.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_like.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_like_ext.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_like_no_subrange.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_size.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__tuple/tuple_types.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_const.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_cv.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_lvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_rvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/add_volatile.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/aligned_storage.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/aligned_union.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/alignment_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/can_extract_key.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/common_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/common_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/conditional.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/conjunction.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/copy_cv.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/copy_cvref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/datasizeof.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/decay.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/dependent_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/desugars_to.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/disjunction.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/enable_if.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/extent.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/has_unique_object_representation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/has_virtual_destructor.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/integral_constant.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/invoke.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_abstract.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_aggregate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_allocator.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_always_bitcastable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_array.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_assignable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_base_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_bounded_array.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_callable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_char_like_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_class.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_compound.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_const.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_constant_evaluated.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_constructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_convertible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_core_convertible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_destructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_empty.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_enum.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_execution_policy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_final.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_floating_point.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_function.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_fundamental.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_implicitly_default_constructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_literal_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_member_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_nothrow_assignable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_nothrow_constructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_nothrow_convertible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_nothrow_destructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_null_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_object.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_pod.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_polymorphic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_primary_template.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_referenceable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_same.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_scalar.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_signed.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_signed_integer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_specialization.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_standard_layout.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_swappable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivial.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_assignable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_constructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_copyable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_destructible.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_lexicographically_comparable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_trivially_relocatable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_unbounded_array.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_union.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_unsigned.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_unsigned_integer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_valid_expansion.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_void.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/is_volatile.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/lazy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/make_32_64_or_128_bit.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/make_const_lvalue_ref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/make_signed.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/make_unsigned.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/maybe_const.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/nat.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/negation.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/noexcept_move_assign_container.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/promote.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/rank.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_all_extents.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_const.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_const_ref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_cv.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_cvref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_extent.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_pointer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/remove_volatile.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/result_of.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/strip_signature.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/type_identity.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/type_list.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/underlying_type.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/unwrap_ref.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__type_traits/void_t.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__undef_macros
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/as_const.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/as_lvalue.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/auto_cast.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/cmp.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/convert_to_integral.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/declval.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/empty.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/exception_guard.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/exchange.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/forward.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/forward_like.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/in_place.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/integer_sequence.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/is_pointer_in_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/is_valid_range.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/move.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/no_destroy.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/pair.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/piecewise_construct.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/priority_tag.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/private_constructor_tag.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/rel_ops.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/small_buffer.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/swap.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/to_underlying.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__utility/unreachable.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__variant/
+${LLVM_BASE}/include/c++/v1/__cxx03/__variant/monostate.h
+${LLVM_BASE}/include/c++/v1/__cxx03/__verbose_abort
+${LLVM_BASE}/include/c++/v1/__cxx03/algorithm
+${LLVM_BASE}/include/c++/v1/__cxx03/any
+${LLVM_BASE}/include/c++/v1/__cxx03/array
+${LLVM_BASE}/include/c++/v1/__cxx03/atomic
+${LLVM_BASE}/include/c++/v1/__cxx03/barrier
+${LLVM_BASE}/include/c++/v1/__cxx03/bit
+${LLVM_BASE}/include/c++/v1/__cxx03/bitset
+${LLVM_BASE}/include/c++/v1/__cxx03/cassert
+${LLVM_BASE}/include/c++/v1/__cxx03/ccomplex
+${LLVM_BASE}/include/c++/v1/__cxx03/cctype
+${LLVM_BASE}/include/c++/v1/__cxx03/cerrno
+${LLVM_BASE}/include/c++/v1/__cxx03/cfenv
+${LLVM_BASE}/include/c++/v1/__cxx03/cfloat
+${LLVM_BASE}/include/c++/v1/__cxx03/charconv
+${LLVM_BASE}/include/c++/v1/__cxx03/chrono
+${LLVM_BASE}/include/c++/v1/__cxx03/cinttypes
+${LLVM_BASE}/include/c++/v1/__cxx03/ciso646
+${LLVM_BASE}/include/c++/v1/__cxx03/climits
+${LLVM_BASE}/include/c++/v1/__cxx03/clocale
+${LLVM_BASE}/include/c++/v1/__cxx03/cmath
+${LLVM_BASE}/include/c++/v1/__cxx03/codecvt
+${LLVM_BASE}/include/c++/v1/__cxx03/compare
+${LLVM_BASE}/include/c++/v1/__cxx03/complex
+${LLVM_BASE}/include/c++/v1/__cxx03/complex.h
+${LLVM_BASE}/include/c++/v1/__cxx03/concepts
+${LLVM_BASE}/include/c++/v1/__cxx03/condition_variable
+${LLVM_BASE}/include/c++/v1/__cxx03/coroutine
+${LLVM_BASE}/include/c++/v1/__cxx03/csetjmp
+${LLVM_BASE}/include/c++/v1/__cxx03/csignal
+${LLVM_BASE}/include/c++/v1/__cxx03/cstdarg
+${LLVM_BASE}/include/c++/v1/__cxx03/cstdbool
+${LLVM_BASE}/include/c++/v1/__cxx03/cstddef
+${LLVM_BASE}/include/c++/v1/__cxx03/cstdint
+${LLVM_BASE}/include/c++/v1/__cxx03/cstdio
+${LLVM_BASE}/include/c++/v1/__cxx03/cstdlib
+${LLVM_BASE}/include/c++/v1/__cxx03/cstring
+${LLVM_BASE}/include/c++/v1/__cxx03/ctgmath
+${LLVM_BASE}/include/c++/v1/__cxx03/ctime
+${LLVM_BASE}/include/c++/v1/__cxx03/ctype.h
+${LLVM_BASE}/include/c++/v1/__cxx03/cuchar
+${LLVM_BASE}/include/c++/v1/__cxx03/cwchar
+${LLVM_BASE}/include/c++/v1/__cxx03/cwctype
+${LLVM_BASE}/include/c++/v1/__cxx03/deque
+${LLVM_BASE}/include/c++/v1/__cxx03/errno.h
+${LLVM_BASE}/include/c++/v1/__cxx03/exception
+${LLVM_BASE}/include/c++/v1/__cxx03/execution
+${LLVM_BASE}/include/c++/v1/__cxx03/expected
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__config
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/aligned_tag.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/declaration.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/reference.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/scalar.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/simd.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/simd_mask.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/traits.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/utility.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/__simd/vec_ext.h
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/iterator
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/memory
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/propagate_const
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/simd
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/type_traits
+${LLVM_BASE}/include/c++/v1/__cxx03/experimental/utility
+${LLVM_BASE}/include/c++/v1/__cxx03/ext/
+${LLVM_BASE}/include/c++/v1/__cxx03/ext/__hash
+${LLVM_BASE}/include/c++/v1/__cxx03/ext/hash_map
+${LLVM_BASE}/include/c++/v1/__cxx03/ext/hash_set
+${LLVM_BASE}/include/c++/v1/__cxx03/fenv.h
+${LLVM_BASE}/include/c++/v1/__cxx03/filesystem
+${LLVM_BASE}/include/c++/v1/__cxx03/float.h
+${LLVM_BASE}/include/c++/v1/__cxx03/format
+${LLVM_BASE}/include/c++/v1/__cxx03/forward_list
+${LLVM_BASE}/include/c++/v1/__cxx03/fstream
+${LLVM_BASE}/include/c++/v1/__cxx03/functional
+${LLVM_BASE}/include/c++/v1/__cxx03/future
+${LLVM_BASE}/include/c++/v1/__cxx03/initializer_list
+${LLVM_BASE}/include/c++/v1/__cxx03/inttypes.h
+${LLVM_BASE}/include/c++/v1/__cxx03/iomanip
+${LLVM_BASE}/include/c++/v1/__cxx03/ios
+${LLVM_BASE}/include/c++/v1/__cxx03/iosfwd
+${LLVM_BASE}/include/c++/v1/__cxx03/iostream
+${LLVM_BASE}/include/c++/v1/__cxx03/istream
+${LLVM_BASE}/include/c++/v1/__cxx03/iterator
+${LLVM_BASE}/include/c++/v1/__cxx03/latch
+${LLVM_BASE}/include/c++/v1/__cxx03/limits
+${LLVM_BASE}/include/c++/v1/__cxx03/list
+${LLVM_BASE}/include/c++/v1/__cxx03/locale
+${LLVM_BASE}/include/c++/v1/__cxx03/locale.h
+${LLVM_BASE}/include/c++/v1/__cxx03/map
+${LLVM_BASE}/include/c++/v1/__cxx03/math.h
+${LLVM_BASE}/include/c++/v1/__cxx03/mdspan
+${LLVM_BASE}/include/c++/v1/__cxx03/memory
+${LLVM_BASE}/include/c++/v1/__cxx03/memory_resource
+${LLVM_BASE}/include/c++/v1/__cxx03/module.modulemap
+${LLVM_BASE}/include/c++/v1/__cxx03/mutex
+${LLVM_BASE}/include/c++/v1/__cxx03/new
+${LLVM_BASE}/include/c++/v1/__cxx03/numbers
+${LLVM_BASE}/include/c++/v1/__cxx03/numeric
+${LLVM_BASE}/include/c++/v1/__cxx03/optional
+${LLVM_BASE}/include/c++/v1/__cxx03/ostream
+${LLVM_BASE}/include/c++/v1/__cxx03/print
+${LLVM_BASE}/include/c++/v1/__cxx03/queue
+${LLVM_BASE}/include/c++/v1/__cxx03/random
+${LLVM_BASE}/include/c++/v1/__cxx03/ranges
+${LLVM_BASE}/include/c++/v1/__cxx03/ratio
+${LLVM_BASE}/include/c++/v1/__cxx03/regex
+${LLVM_BASE}/include/c++/v1/__cxx03/scoped_allocator
+${LLVM_BASE}/include/c++/v1/__cxx03/semaphore
+${LLVM_BASE}/include/c++/v1/__cxx03/set
+${LLVM_BASE}/include/c++/v1/__cxx03/shared_mutex
+${LLVM_BASE}/include/c++/v1/__cxx03/source_location
+${LLVM_BASE}/include/c++/v1/__cxx03/span
+${LLVM_BASE}/include/c++/v1/__cxx03/sstream
+${LLVM_BASE}/include/c++/v1/__cxx03/stack
+${LLVM_BASE}/include/c++/v1/__cxx03/stdatomic.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stdbool.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stddef.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stdexcept
+${LLVM_BASE}/include/c++/v1/__cxx03/stdint.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stdio.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stdlib.h
+${LLVM_BASE}/include/c++/v1/__cxx03/stop_token
+${LLVM_BASE}/include/c++/v1/__cxx03/streambuf
+${LLVM_BASE}/include/c++/v1/__cxx03/string
+${LLVM_BASE}/include/c++/v1/__cxx03/string.h
+${LLVM_BASE}/include/c++/v1/__cxx03/string_view
+${LLVM_BASE}/include/c++/v1/__cxx03/strstream
+${LLVM_BASE}/include/c++/v1/__cxx03/syncstream
+${LLVM_BASE}/include/c++/v1/__cxx03/system_error
+${LLVM_BASE}/include/c++/v1/__cxx03/tgmath.h
+${LLVM_BASE}/include/c++/v1/__cxx03/thread
+${LLVM_BASE}/include/c++/v1/__cxx03/tuple
+${LLVM_BASE}/include/c++/v1/__cxx03/type_traits
+${LLVM_BASE}/include/c++/v1/__cxx03/typeindex
+${LLVM_BASE}/include/c++/v1/__cxx03/typeinfo
+${LLVM_BASE}/include/c++/v1/__cxx03/uchar.h
+${LLVM_BASE}/include/c++/v1/__cxx03/unordered_map
+${LLVM_BASE}/include/c++/v1/__cxx03/unordered_set
+${LLVM_BASE}/include/c++/v1/__cxx03/utility
+${LLVM_BASE}/include/c++/v1/__cxx03/valarray
+${LLVM_BASE}/include/c++/v1/__cxx03/variant
+${LLVM_BASE}/include/c++/v1/__cxx03/vector
+${LLVM_BASE}/include/c++/v1/__cxx03/version
+${LLVM_BASE}/include/c++/v1/__cxx03/wchar.h
+${LLVM_BASE}/include/c++/v1/__cxx03/wctype.h
+${LLVM_BASE}/include/c++/v1/__cxxabi_config.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/
+${LLVM_BASE}/include/c++/v1/__debug_utils/randomize_range.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/sanitizers.h
+${LLVM_BASE}/include/c++/v1/__debug_utils/strict_weak_ordering_check.h
+${LLVM_BASE}/include/c++/v1/__exception/
+${LLVM_BASE}/include/c++/v1/__exception/exception.h
+${LLVM_BASE}/include/c++/v1/__exception/exception_ptr.h
+${LLVM_BASE}/include/c++/v1/__exception/nested_exception.h
+${LLVM_BASE}/include/c++/v1/__exception/operations.h
+${LLVM_BASE}/include/c++/v1/__exception/terminate.h
+${LLVM_BASE}/include/c++/v1/__expected/
+${LLVM_BASE}/include/c++/v1/__expected/bad_expected_access.h
+${LLVM_BASE}/include/c++/v1/__expected/expected.h
+${LLVM_BASE}/include/c++/v1/__expected/unexpect.h
+${LLVM_BASE}/include/c++/v1/__expected/unexpected.h
+${LLVM_BASE}/include/c++/v1/__filesystem/
+${LLVM_BASE}/include/c++/v1/__filesystem/copy_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_entry.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/directory_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_status.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_time_type.h
+${LLVM_BASE}/include/c++/v1/__filesystem/file_type.h
+${LLVM_BASE}/include/c++/v1/__filesystem/filesystem_error.h
+${LLVM_BASE}/include/c++/v1/__filesystem/operations.h
+${LLVM_BASE}/include/c++/v1/__filesystem/path.h
+${LLVM_BASE}/include/c++/v1/__filesystem/path_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/perm_options.h
+${LLVM_BASE}/include/c++/v1/__filesystem/perms.h
+${LLVM_BASE}/include/c++/v1/__filesystem/recursive_directory_iterator.h
+${LLVM_BASE}/include/c++/v1/__filesystem/space_info.h
+${LLVM_BASE}/include/c++/v1/__filesystem/u8path.h
+${LLVM_BASE}/include/c++/v1/__flat_map/
+${LLVM_BASE}/include/c++/v1/__flat_map/flat_map.h
+${LLVM_BASE}/include/c++/v1/__flat_map/flat_multimap.h
+${LLVM_BASE}/include/c++/v1/__flat_map/key_value_iterator.h
+${LLVM_BASE}/include/c++/v1/__flat_map/sorted_equivalent.h
+${LLVM_BASE}/include/c++/v1/__flat_map/sorted_unique.h
+${LLVM_BASE}/include/c++/v1/__flat_map/utils.h
+${LLVM_BASE}/include/c++/v1/__format/
+${LLVM_BASE}/include/c++/v1/__format/buffer.h
+${LLVM_BASE}/include/c++/v1/__format/concepts.h
+${LLVM_BASE}/include/c++/v1/__format/container_adaptor.h
+${LLVM_BASE}/include/c++/v1/__format/enable_insertable.h
+${LLVM_BASE}/include/c++/v1/__format/escaped_output_table.h
+${LLVM_BASE}/include/c++/v1/__format/extended_grapheme_cluster_table.h
+${LLVM_BASE}/include/c++/v1/__format/format_arg.h
+${LLVM_BASE}/include/c++/v1/__format/format_arg_store.h
+${LLVM_BASE}/include/c++/v1/__format/format_args.h
+${LLVM_BASE}/include/c++/v1/__format/format_context.h
+${LLVM_BASE}/include/c++/v1/__format/format_error.h
+${LLVM_BASE}/include/c++/v1/__format/format_functions.h
+${LLVM_BASE}/include/c++/v1/__format/format_parse_context.h
+${LLVM_BASE}/include/c++/v1/__format/format_string.h
+${LLVM_BASE}/include/c++/v1/__format/format_to_n_result.h
+${LLVM_BASE}/include/c++/v1/__format/formatter.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_bool.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_char.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_floating_point.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_integer.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_integral.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_output.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_pointer.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_string.h
+${LLVM_BASE}/include/c++/v1/__format/formatter_tuple.h
+${LLVM_BASE}/include/c++/v1/__format/indic_conjunct_break_table.h
+${LLVM_BASE}/include/c++/v1/__format/parser_std_format_spec.h
+${LLVM_BASE}/include/c++/v1/__format/range_default_formatter.h
+${LLVM_BASE}/include/c++/v1/__format/range_formatter.h
+${LLVM_BASE}/include/c++/v1/__format/unicode.h
+${LLVM_BASE}/include/c++/v1/__format/width_estimation_table.h
+${LLVM_BASE}/include/c++/v1/__format/write_escaped.h
+${LLVM_BASE}/include/c++/v1/__functional/
+${LLVM_BASE}/include/c++/v1/__functional/binary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/binary_negate.h
+${LLVM_BASE}/include/c++/v1/__functional/bind.h
+${LLVM_BASE}/include/c++/v1/__functional/bind_back.h
+${LLVM_BASE}/include/c++/v1/__functional/bind_front.h
+${LLVM_BASE}/include/c++/v1/__functional/binder1st.h
+${LLVM_BASE}/include/c++/v1/__functional/binder2nd.h
+${LLVM_BASE}/include/c++/v1/__functional/boyer_moore_searcher.h
+${LLVM_BASE}/include/c++/v1/__functional/compose.h
+${LLVM_BASE}/include/c++/v1/__functional/default_searcher.h
+${LLVM_BASE}/include/c++/v1/__functional/function.h
+${LLVM_BASE}/include/c++/v1/__functional/hash.h
+${LLVM_BASE}/include/c++/v1/__functional/identity.h
+${LLVM_BASE}/include/c++/v1/__functional/invoke.h
+${LLVM_BASE}/include/c++/v1/__functional/is_transparent.h
+${LLVM_BASE}/include/c++/v1/__functional/mem_fn.h
+${LLVM_BASE}/include/c++/v1/__functional/mem_fun_ref.h
+${LLVM_BASE}/include/c++/v1/__functional/not_fn.h
+${LLVM_BASE}/include/c++/v1/__functional/operations.h
+${LLVM_BASE}/include/c++/v1/__functional/perfect_forward.h
+${LLVM_BASE}/include/c++/v1/__functional/pointer_to_binary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/pointer_to_unary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/ranges_operations.h
+${LLVM_BASE}/include/c++/v1/__functional/reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__functional/unary_function.h
+${LLVM_BASE}/include/c++/v1/__functional/unary_negate.h
+${LLVM_BASE}/include/c++/v1/__functional/weak_result_type.h
+${LLVM_BASE}/include/c++/v1/__fwd/
+${LLVM_BASE}/include/c++/v1/__fwd/array.h
+${LLVM_BASE}/include/c++/v1/__fwd/bit_reference.h
+${LLVM_BASE}/include/c++/v1/__fwd/byte.h
+${LLVM_BASE}/include/c++/v1/__fwd/complex.h
+${LLVM_BASE}/include/c++/v1/__fwd/deque.h
+${LLVM_BASE}/include/c++/v1/__fwd/format.h
+${LLVM_BASE}/include/c++/v1/__fwd/fstream.h
+${LLVM_BASE}/include/c++/v1/__fwd/functional.h
+${LLVM_BASE}/include/c++/v1/__fwd/get.h
+${LLVM_BASE}/include/c++/v1/__fwd/ios.h
+${LLVM_BASE}/include/c++/v1/__fwd/istream.h
+${LLVM_BASE}/include/c++/v1/__fwd/mdspan.h
+${LLVM_BASE}/include/c++/v1/__fwd/memory.h
+${LLVM_BASE}/include/c++/v1/__fwd/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__fwd/ostream.h
+${LLVM_BASE}/include/c++/v1/__fwd/pair.h
+${LLVM_BASE}/include/c++/v1/__fwd/queue.h
+${LLVM_BASE}/include/c++/v1/__fwd/span.h
+${LLVM_BASE}/include/c++/v1/__fwd/sstream.h
+${LLVM_BASE}/include/c++/v1/__fwd/stack.h
+${LLVM_BASE}/include/c++/v1/__fwd/streambuf.h
+${LLVM_BASE}/include/c++/v1/__fwd/string.h
+${LLVM_BASE}/include/c++/v1/__fwd/string_view.h
+${LLVM_BASE}/include/c++/v1/__fwd/subrange.h
+${LLVM_BASE}/include/c++/v1/__fwd/tuple.h
+${LLVM_BASE}/include/c++/v1/__fwd/variant.h
+${LLVM_BASE}/include/c++/v1/__fwd/vector.h
+${LLVM_BASE}/include/c++/v1/__hash_table
+${LLVM_BASE}/include/c++/v1/__ios/
+${LLVM_BASE}/include/c++/v1/__ios/fpos.h
+${LLVM_BASE}/include/c++/v1/__iterator/
+${LLVM_BASE}/include/c++/v1/__iterator/access.h
+${LLVM_BASE}/include/c++/v1/__iterator/advance.h
+${LLVM_BASE}/include/c++/v1/__iterator/aliasing_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/back_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/bounded_iter.h
+${LLVM_BASE}/include/c++/v1/__iterator/common_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/concepts.h
+${LLVM_BASE}/include/c++/v1/__iterator/counted_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/cpp17_iterator_concepts.h
+${LLVM_BASE}/include/c++/v1/__iterator/data.h
+${LLVM_BASE}/include/c++/v1/__iterator/default_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/distance.h
+${LLVM_BASE}/include/c++/v1/__iterator/empty.h
+${LLVM_BASE}/include/c++/v1/__iterator/erase_if_container.h
+${LLVM_BASE}/include/c++/v1/__iterator/front_insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/incrementable_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/indirectly_comparable.h
+${LLVM_BASE}/include/c++/v1/__iterator/insert_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/istream_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/istreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/iter_move.h
+${LLVM_BASE}/include/c++/v1/__iterator/iter_swap.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/iterator_with_data.h
+${LLVM_BASE}/include/c++/v1/__iterator/mergeable.h
+${LLVM_BASE}/include/c++/v1/__iterator/move_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/move_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/next.h
+${LLVM_BASE}/include/c++/v1/__iterator/ostream_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/ostreambuf_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/permutable.h
+${LLVM_BASE}/include/c++/v1/__iterator/prev.h
+${LLVM_BASE}/include/c++/v1/__iterator/projected.h
+${LLVM_BASE}/include/c++/v1/__iterator/ranges_iterator_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/readable_traits.h
+${LLVM_BASE}/include/c++/v1/__iterator/reverse_access.h
+${LLVM_BASE}/include/c++/v1/__iterator/reverse_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/segmented_iterator.h
+${LLVM_BASE}/include/c++/v1/__iterator/size.h
+${LLVM_BASE}/include/c++/v1/__iterator/sortable.h
+${LLVM_BASE}/include/c++/v1/__iterator/static_bounded_iter.h
+${LLVM_BASE}/include/c++/v1/__iterator/unreachable_sentinel.h
+${LLVM_BASE}/include/c++/v1/__iterator/wrap_iter.h
+${LLVM_BASE}/include/c++/v1/__locale
+${LLVM_BASE}/include/c++/v1/__locale_dir/
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/android.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_fallbacks.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/ibm.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/musl.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/locale_base_api/openbsd.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/pad_and_output.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/apple.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/bsd_like.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/freebsd.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/fuchsia.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/no_locale/
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/no_locale/characters.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/no_locale/strtonum.h
+${LLVM_BASE}/include/c++/v1/__locale_dir/support/windows.h
+${LLVM_BASE}/include/c++/v1/__math/
+${LLVM_BASE}/include/c++/v1/__math/abs.h
+${LLVM_BASE}/include/c++/v1/__math/copysign.h
+${LLVM_BASE}/include/c++/v1/__math/error_functions.h
+${LLVM_BASE}/include/c++/v1/__math/exponential_functions.h
+${LLVM_BASE}/include/c++/v1/__math/fdim.h
+${LLVM_BASE}/include/c++/v1/__math/fma.h
+${LLVM_BASE}/include/c++/v1/__math/gamma.h
+${LLVM_BASE}/include/c++/v1/__math/hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__math/hypot.h
+${LLVM_BASE}/include/c++/v1/__math/inverse_hyperbolic_functions.h
+${LLVM_BASE}/include/c++/v1/__math/inverse_trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__math/logarithms.h
+${LLVM_BASE}/include/c++/v1/__math/min_max.h
+${LLVM_BASE}/include/c++/v1/__math/modulo.h
+${LLVM_BASE}/include/c++/v1/__math/remainder.h
+${LLVM_BASE}/include/c++/v1/__math/roots.h
+${LLVM_BASE}/include/c++/v1/__math/rounding_functions.h
+${LLVM_BASE}/include/c++/v1/__math/special_functions.h
+${LLVM_BASE}/include/c++/v1/__math/traits.h
+${LLVM_BASE}/include/c++/v1/__math/trigonometric_functions.h
+${LLVM_BASE}/include/c++/v1/__mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__mdspan/
+${LLVM_BASE}/include/c++/v1/__mdspan/default_accessor.h
+${LLVM_BASE}/include/c++/v1/__mdspan/extents.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_left.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_right.h
+${LLVM_BASE}/include/c++/v1/__mdspan/layout_stride.h
+${LLVM_BASE}/include/c++/v1/__mdspan/mdspan.h
+${LLVM_BASE}/include/c++/v1/__memory/
+${LLVM_BASE}/include/c++/v1/__memory/addressof.h
+${LLVM_BASE}/include/c++/v1/__memory/align.h
+${LLVM_BASE}/include/c++/v1/__memory/aligned_alloc.h
+${LLVM_BASE}/include/c++/v1/__memory/allocate_at_least.h
+${LLVM_BASE}/include/c++/v1/__memory/allocation_guard.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_arg_t.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_destructor.h
+${LLVM_BASE}/include/c++/v1/__memory/allocator_traits.h
+${LLVM_BASE}/include/c++/v1/__memory/array_cookie.h
+${LLVM_BASE}/include/c++/v1/__memory/assume_aligned.h
+${LLVM_BASE}/include/c++/v1/__memory/auto_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/compressed_pair.h
+${LLVM_BASE}/include/c++/v1/__memory/concepts.h
+${LLVM_BASE}/include/c++/v1/__memory/construct_at.h
+${LLVM_BASE}/include/c++/v1/__memory/destruct_n.h
+${LLVM_BASE}/include/c++/v1/__memory/inout_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/noexcept_move_assign_container.h
+${LLVM_BASE}/include/c++/v1/__memory/out_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/pointer_traits.h
+${LLVM_BASE}/include/c++/v1/__memory/ranges_construct_at.h
+${LLVM_BASE}/include/c++/v1/__memory/ranges_uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__memory/raw_storage_iterator.h
+${LLVM_BASE}/include/c++/v1/__memory/shared_count.h
+${LLVM_BASE}/include/c++/v1/__memory/shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/swap_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/temp_value.h
+${LLVM_BASE}/include/c++/v1/__memory/temporary_buffer.h
+${LLVM_BASE}/include/c++/v1/__memory/uninitialized_algorithms.h
+${LLVM_BASE}/include/c++/v1/__memory/unique_ptr.h
+${LLVM_BASE}/include/c++/v1/__memory/unique_temporary_buffer.h
+${LLVM_BASE}/include/c++/v1/__memory/uses_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory/uses_allocator_construction.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/
+${LLVM_BASE}/include/c++/v1/__memory_resource/memory_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/monotonic_buffer_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/polymorphic_allocator.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/pool_options.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/synchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__memory_resource/unsynchronized_pool_resource.h
+${LLVM_BASE}/include/c++/v1/__mutex/
+${LLVM_BASE}/include/c++/v1/__mutex/lock_guard.h
+${LLVM_BASE}/include/c++/v1/__mutex/mutex.h
+${LLVM_BASE}/include/c++/v1/__mutex/once_flag.h
+${LLVM_BASE}/include/c++/v1/__mutex/tag_types.h
+${LLVM_BASE}/include/c++/v1/__mutex/unique_lock.h
+${LLVM_BASE}/include/c++/v1/__new/
+${LLVM_BASE}/include/c++/v1/__new/align_val_t.h
+${LLVM_BASE}/include/c++/v1/__new/allocate.h
+${LLVM_BASE}/include/c++/v1/__new/destroying_delete_t.h
+${LLVM_BASE}/include/c++/v1/__new/exceptions.h
+${LLVM_BASE}/include/c++/v1/__new/global_new_delete.h
+${LLVM_BASE}/include/c++/v1/__new/interference_size.h
+${LLVM_BASE}/include/c++/v1/__new/launder.h
+${LLVM_BASE}/include/c++/v1/__new/new_handler.h
+${LLVM_BASE}/include/c++/v1/__new/nothrow_t.h
+${LLVM_BASE}/include/c++/v1/__new/placement_new_delete.h
+${LLVM_BASE}/include/c++/v1/__node_handle
+${LLVM_BASE}/include/c++/v1/__numeric/
+${LLVM_BASE}/include/c++/v1/__numeric/accumulate.h
+${LLVM_BASE}/include/c++/v1/__numeric/adjacent_difference.h
+${LLVM_BASE}/include/c++/v1/__numeric/exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/gcd_lcm.h
+${LLVM_BASE}/include/c++/v1/__numeric/inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/inner_product.h
+${LLVM_BASE}/include/c++/v1/__numeric/iota.h
+${LLVM_BASE}/include/c++/v1/__numeric/midpoint.h
+${LLVM_BASE}/include/c++/v1/__numeric/partial_sum.h
+${LLVM_BASE}/include/c++/v1/__numeric/pstl.h
+${LLVM_BASE}/include/c++/v1/__numeric/reduce.h
+${LLVM_BASE}/include/c++/v1/__numeric/saturation_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_exclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_inclusive_scan.h
+${LLVM_BASE}/include/c++/v1/__numeric/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__ostream/
+${LLVM_BASE}/include/c++/v1/__ostream/basic_ostream.h
+${LLVM_BASE}/include/c++/v1/__ostream/print.h
+${LLVM_BASE}/include/c++/v1/__ostream/put_character_sequence.h
+${LLVM_BASE}/include/c++/v1/__pstl/
+${LLVM_BASE}/include/c++/v1/__pstl/backend.h
+${LLVM_BASE}/include/c++/v1/__pstl/backend_fwd.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/
+${LLVM_BASE}/include/c++/v1/__pstl/backends/default.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/libdispatch.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/serial.h
+${LLVM_BASE}/include/c++/v1/__pstl/backends/std_thread.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/any_of.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/cpu_traits.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/fill.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/find_if.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/for_each.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/merge.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/stable_sort.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/transform.h
+${LLVM_BASE}/include/c++/v1/__pstl/cpu_algos/transform_reduce.h
+${LLVM_BASE}/include/c++/v1/__pstl/dispatch.h
+${LLVM_BASE}/include/c++/v1/__pstl/handle_exception.h
+${LLVM_BASE}/include/c++/v1/__random/
+${LLVM_BASE}/include/c++/v1/__random/bernoulli_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/cauchy_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/chi_squared_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/clamp_to_integral.h
+${LLVM_BASE}/include/c++/v1/__random/default_random_engine.h
+${LLVM_BASE}/include/c++/v1/__random/discard_block_engine.h
+${LLVM_BASE}/include/c++/v1/__random/discrete_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/exponential_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/extreme_value_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/fisher_f_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/gamma_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/generate_canonical.h
+${LLVM_BASE}/include/c++/v1/__random/geometric_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/independent_bits_engine.h
+${LLVM_BASE}/include/c++/v1/__random/is_seed_sequence.h
+${LLVM_BASE}/include/c++/v1/__random/is_valid.h
+${LLVM_BASE}/include/c++/v1/__random/knuth_b.h
+${LLVM_BASE}/include/c++/v1/__random/linear_congruential_engine.h
+${LLVM_BASE}/include/c++/v1/__random/log2.h
+${LLVM_BASE}/include/c++/v1/__random/lognormal_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/mersenne_twister_engine.h
+${LLVM_BASE}/include/c++/v1/__random/negative_binomial_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/normal_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/piecewise_constant_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/piecewise_linear_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/poisson_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/random_device.h
+${LLVM_BASE}/include/c++/v1/__random/ranlux.h
+${LLVM_BASE}/include/c++/v1/__random/seed_seq.h
+${LLVM_BASE}/include/c++/v1/__random/shuffle_order_engine.h
+${LLVM_BASE}/include/c++/v1/__random/student_t_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/subtract_with_carry_engine.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_int_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_random_bit_generator.h
+${LLVM_BASE}/include/c++/v1/__random/uniform_real_distribution.h
+${LLVM_BASE}/include/c++/v1/__random/weibull_distribution.h
+${LLVM_BASE}/include/c++/v1/__ranges/
+${LLVM_BASE}/include/c++/v1/__ranges/access.h
+${LLVM_BASE}/include/c++/v1/__ranges/all.h
+${LLVM_BASE}/include/c++/v1/__ranges/as_rvalue_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/chunk_by_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/common_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/concepts.h
+${LLVM_BASE}/include/c++/v1/__ranges/container_compatible_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/counted.h
+${LLVM_BASE}/include/c++/v1/__ranges/dangling.h
+${LLVM_BASE}/include/c++/v1/__ranges/data.h
+${LLVM_BASE}/include/c++/v1/__ranges/drop_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/drop_while_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/elements_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/empty.h
+${LLVM_BASE}/include/c++/v1/__ranges/empty_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/enable_borrowed_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/enable_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/filter_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/from_range.h
+${LLVM_BASE}/include/c++/v1/__ranges/iota_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/istream_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/join_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/lazy_split_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/movable_box.h
+${LLVM_BASE}/include/c++/v1/__ranges/non_propagating_cache.h
+${LLVM_BASE}/include/c++/v1/__ranges/owning_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/range_adaptor.h
+${LLVM_BASE}/include/c++/v1/__ranges/rbegin.h
+${LLVM_BASE}/include/c++/v1/__ranges/ref_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/rend.h
+${LLVM_BASE}/include/c++/v1/__ranges/repeat_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/reverse_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/single_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/size.h
+${LLVM_BASE}/include/c++/v1/__ranges/split_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/subrange.h
+${LLVM_BASE}/include/c++/v1/__ranges/take_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/take_while_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/to.h
+${LLVM_BASE}/include/c++/v1/__ranges/transform_view.h
+${LLVM_BASE}/include/c++/v1/__ranges/view_interface.h
+${LLVM_BASE}/include/c++/v1/__ranges/views.h
+${LLVM_BASE}/include/c++/v1/__ranges/zip_view.h
+${LLVM_BASE}/include/c++/v1/__split_buffer
+${LLVM_BASE}/include/c++/v1/__std_mbstate_t.h
+${LLVM_BASE}/include/c++/v1/__stop_token/
+${LLVM_BASE}/include/c++/v1/__stop_token/atomic_unique_lock.h
+${LLVM_BASE}/include/c++/v1/__stop_token/intrusive_list_view.h
+${LLVM_BASE}/include/c++/v1/__stop_token/intrusive_shared_ptr.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_callback.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_source.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_state.h
+${LLVM_BASE}/include/c++/v1/__stop_token/stop_token.h
+${LLVM_BASE}/include/c++/v1/__string/
+${LLVM_BASE}/include/c++/v1/__string/char_traits.h
+${LLVM_BASE}/include/c++/v1/__string/constexpr_c_functions.h
+${LLVM_BASE}/include/c++/v1/__string/extern_template_lists.h
+${LLVM_BASE}/include/c++/v1/__support/
+${LLVM_BASE}/include/c++/v1/__support/ibm/
+${LLVM_BASE}/include/c++/v1/__support/ibm/gettod_zos.h
+${LLVM_BASE}/include/c++/v1/__support/ibm/locale_mgmt_zos.h
+${LLVM_BASE}/include/c++/v1/__support/ibm/nanosleep.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__nop_locale_mgmt.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__posix_l_fallback.h
+${LLVM_BASE}/include/c++/v1/__support/xlocale/__strtonum_fallback.h
+${LLVM_BASE}/include/c++/v1/__system_error/
+${LLVM_BASE}/include/c++/v1/__system_error/errc.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_category.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_code.h
+${LLVM_BASE}/include/c++/v1/__system_error/error_condition.h
+${LLVM_BASE}/include/c++/v1/__system_error/system_error.h
+${LLVM_BASE}/include/c++/v1/__system_error/throw_system_error.h
+${LLVM_BASE}/include/c++/v1/__thread/
+${LLVM_BASE}/include/c++/v1/__thread/formatter.h
+${LLVM_BASE}/include/c++/v1/__thread/id.h
+${LLVM_BASE}/include/c++/v1/__thread/jthread.h
+${LLVM_BASE}/include/c++/v1/__thread/poll_with_backoff.h
+${LLVM_BASE}/include/c++/v1/__thread/support/
+${LLVM_BASE}/include/c++/v1/__thread/support.h
+${LLVM_BASE}/include/c++/v1/__thread/support/c11.h
+${LLVM_BASE}/include/c++/v1/__thread/support/external.h
+${LLVM_BASE}/include/c++/v1/__thread/support/pthread.h
+${LLVM_BASE}/include/c++/v1/__thread/support/windows.h
+${LLVM_BASE}/include/c++/v1/__thread/this_thread.h
+${LLVM_BASE}/include/c++/v1/__thread/thread.h
+${LLVM_BASE}/include/c++/v1/__thread/timed_backoff_policy.h
+${LLVM_BASE}/include/c++/v1/__tree
+${LLVM_BASE}/include/c++/v1/__tuple/
+${LLVM_BASE}/include/c++/v1/__tuple/find_index.h
+${LLVM_BASE}/include/c++/v1/__tuple/ignore.h
+${LLVM_BASE}/include/c++/v1/__tuple/make_tuple_types.h
+${LLVM_BASE}/include/c++/v1/__tuple/sfinae_helpers.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_element.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_indices.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like_ext.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_like_no_subrange.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_size.h
+${LLVM_BASE}/include/c++/v1/__tuple/tuple_types.h
+${LLVM_BASE}/include/c++/v1/__type_traits/
+${LLVM_BASE}/include/c++/v1/__type_traits/add_cv_quals.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_lvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/add_rvalue_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/aligned_storage.h
+${LLVM_BASE}/include/c++/v1/__type_traits/aligned_union.h
+${LLVM_BASE}/include/c++/v1/__type_traits/alignment_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/can_extract_key.h
+${LLVM_BASE}/include/c++/v1/__type_traits/common_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/common_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/conditional.h
+${LLVM_BASE}/include/c++/v1/__type_traits/conjunction.h
+${LLVM_BASE}/include/c++/v1/__type_traits/container_traits.h
+${LLVM_BASE}/include/c++/v1/__type_traits/copy_cv.h
+${LLVM_BASE}/include/c++/v1/__type_traits/copy_cvref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/datasizeof.h
+${LLVM_BASE}/include/c++/v1/__type_traits/decay.h
+${LLVM_BASE}/include/c++/v1/__type_traits/dependent_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/desugars_to.h
+${LLVM_BASE}/include/c++/v1/__type_traits/detected_or.h
+${LLVM_BASE}/include/c++/v1/__type_traits/disjunction.h
+${LLVM_BASE}/include/c++/v1/__type_traits/enable_if.h
+${LLVM_BASE}/include/c++/v1/__type_traits/extent.h
+${LLVM_BASE}/include/c++/v1/__type_traits/has_unique_object_representation.h
+${LLVM_BASE}/include/c++/v1/__type_traits/has_virtual_destructor.h
+${LLVM_BASE}/include/c++/v1/__type_traits/integral_constant.h
+${LLVM_BASE}/include/c++/v1/__type_traits/invoke.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_abstract.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_aggregate.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_allocator.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_always_bitcastable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_arithmetic.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_base_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_bounded_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_callable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_char_like_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_class.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_compound.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_constant_evaluated.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_core_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_empty.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_enum.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_equality_comparable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_execution_policy.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_final.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_floating_point.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_function.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_fundamental.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_implicit_lifetime.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_implicitly_default_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_integral.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_literal_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_member_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_convertible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_nothrow_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_null_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_object.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_pod.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_polymorphic.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_primary_template.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_reference_wrapper.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_referenceable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_same.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_scalar.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_signed.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_signed_integer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_specialization.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_standard_layout.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_swappable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivial.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_assignable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_constructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_copyable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_destructible.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_trivially_relocatable.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unbounded_array.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_union.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unsigned.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_unsigned_integer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_valid_expansion.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_void.h
+${LLVM_BASE}/include/c++/v1/__type_traits/is_volatile.h
+${LLVM_BASE}/include/c++/v1/__type_traits/lazy.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_32_64_or_128_bit.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_const_lvalue_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_signed.h
+${LLVM_BASE}/include/c++/v1/__type_traits/make_unsigned.h
+${LLVM_BASE}/include/c++/v1/__type_traits/maybe_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/nat.h
+${LLVM_BASE}/include/c++/v1/__type_traits/negation.h
+${LLVM_BASE}/include/c++/v1/__type_traits/promote.h
+${LLVM_BASE}/include/c++/v1/__type_traits/rank.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_all_extents.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_const.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_const_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_cv.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_cvref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_extent.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_pointer.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_reference.h
+${LLVM_BASE}/include/c++/v1/__type_traits/remove_volatile.h
+${LLVM_BASE}/include/c++/v1/__type_traits/result_of.h
+${LLVM_BASE}/include/c++/v1/__type_traits/strip_signature.h
+${LLVM_BASE}/include/c++/v1/__type_traits/type_identity.h
+${LLVM_BASE}/include/c++/v1/__type_traits/type_list.h
+${LLVM_BASE}/include/c++/v1/__type_traits/underlying_type.h
+${LLVM_BASE}/include/c++/v1/__type_traits/unwrap_ref.h
+${LLVM_BASE}/include/c++/v1/__type_traits/void_t.h
+${LLVM_BASE}/include/c++/v1/__undef_macros
+${LLVM_BASE}/include/c++/v1/__utility/
+${LLVM_BASE}/include/c++/v1/__utility/as_const.h
+${LLVM_BASE}/include/c++/v1/__utility/as_lvalue.h
+${LLVM_BASE}/include/c++/v1/__utility/auto_cast.h
+${LLVM_BASE}/include/c++/v1/__utility/cmp.h
+${LLVM_BASE}/include/c++/v1/__utility/convert_to_integral.h
+${LLVM_BASE}/include/c++/v1/__utility/declval.h
+${LLVM_BASE}/include/c++/v1/__utility/element_count.h
+${LLVM_BASE}/include/c++/v1/__utility/empty.h
+${LLVM_BASE}/include/c++/v1/__utility/exception_guard.h
+${LLVM_BASE}/include/c++/v1/__utility/exchange.h
+${LLVM_BASE}/include/c++/v1/__utility/forward.h
+${LLVM_BASE}/include/c++/v1/__utility/forward_like.h
+${LLVM_BASE}/include/c++/v1/__utility/in_place.h
+${LLVM_BASE}/include/c++/v1/__utility/integer_sequence.h
+${LLVM_BASE}/include/c++/v1/__utility/is_pointer_in_range.h
+${LLVM_BASE}/include/c++/v1/__utility/is_valid_range.h
+${LLVM_BASE}/include/c++/v1/__utility/move.h
+${LLVM_BASE}/include/c++/v1/__utility/no_destroy.h
+${LLVM_BASE}/include/c++/v1/__utility/pair.h
+${LLVM_BASE}/include/c++/v1/__utility/piecewise_construct.h
+${LLVM_BASE}/include/c++/v1/__utility/priority_tag.h
+${LLVM_BASE}/include/c++/v1/__utility/private_constructor_tag.h
+${LLVM_BASE}/include/c++/v1/__utility/rel_ops.h
+${LLVM_BASE}/include/c++/v1/__utility/scope_guard.h
+${LLVM_BASE}/include/c++/v1/__utility/small_buffer.h
+${LLVM_BASE}/include/c++/v1/__utility/swap.h
+${LLVM_BASE}/include/c++/v1/__utility/to_underlying.h
+${LLVM_BASE}/include/c++/v1/__utility/unreachable.h
+${LLVM_BASE}/include/c++/v1/__variant/
+${LLVM_BASE}/include/c++/v1/__variant/monostate.h
+${LLVM_BASE}/include/c++/v1/__vector/
+${LLVM_BASE}/include/c++/v1/__vector/comparison.h
+${LLVM_BASE}/include/c++/v1/__vector/container_traits.h
+${LLVM_BASE}/include/c++/v1/__vector/erase.h
+${LLVM_BASE}/include/c++/v1/__vector/pmr.h
+${LLVM_BASE}/include/c++/v1/__vector/swap.h
+${LLVM_BASE}/include/c++/v1/__vector/vector.h
+${LLVM_BASE}/include/c++/v1/__vector/vector_bool.h
+${LLVM_BASE}/include/c++/v1/__vector/vector_bool_formatter.h
+${LLVM_BASE}/include/c++/v1/__verbose_abort
+${LLVM_BASE}/include/c++/v1/algorithm
+${LLVM_BASE}/include/c++/v1/any
+${LLVM_BASE}/include/c++/v1/array
+${LLVM_BASE}/include/c++/v1/atomic
+${LLVM_BASE}/include/c++/v1/barrier
+${LLVM_BASE}/include/c++/v1/bit
+${LLVM_BASE}/include/c++/v1/bitset
+${LLVM_BASE}/include/c++/v1/cassert
+${LLVM_BASE}/include/c++/v1/ccomplex
+${LLVM_BASE}/include/c++/v1/cctype
+${LLVM_BASE}/include/c++/v1/cerrno
+${LLVM_BASE}/include/c++/v1/cfenv
+${LLVM_BASE}/include/c++/v1/cfloat
+${LLVM_BASE}/include/c++/v1/charconv
+${LLVM_BASE}/include/c++/v1/chrono
+${LLVM_BASE}/include/c++/v1/cinttypes
+${LLVM_BASE}/include/c++/v1/ciso646
+${LLVM_BASE}/include/c++/v1/climits
+${LLVM_BASE}/include/c++/v1/clocale
+${LLVM_BASE}/include/c++/v1/cmath
+${LLVM_BASE}/include/c++/v1/codecvt
+${LLVM_BASE}/include/c++/v1/compare
+${LLVM_BASE}/include/c++/v1/complex
+${LLVM_BASE}/include/c++/v1/complex.h
+${LLVM_BASE}/include/c++/v1/concepts
+${LLVM_BASE}/include/c++/v1/condition_variable
+${LLVM_BASE}/include/c++/v1/coroutine
+${LLVM_BASE}/include/c++/v1/csetjmp
+${LLVM_BASE}/include/c++/v1/csignal
+${LLVM_BASE}/include/c++/v1/cstdalign
+${LLVM_BASE}/include/c++/v1/cstdarg
+${LLVM_BASE}/include/c++/v1/cstdbool
+${LLVM_BASE}/include/c++/v1/cstddef
+${LLVM_BASE}/include/c++/v1/cstdint
+${LLVM_BASE}/include/c++/v1/cstdio
+${LLVM_BASE}/include/c++/v1/cstdlib
+${LLVM_BASE}/include/c++/v1/cstring
+${LLVM_BASE}/include/c++/v1/ctgmath
+${LLVM_BASE}/include/c++/v1/ctime
+${LLVM_BASE}/include/c++/v1/ctype.h
+${LLVM_BASE}/include/c++/v1/cuchar
+${LLVM_BASE}/include/c++/v1/cwchar
+${LLVM_BASE}/include/c++/v1/cwctype
+${LLVM_BASE}/include/c++/v1/cxxabi.h
+${LLVM_BASE}/include/c++/v1/deque
+${LLVM_BASE}/include/c++/v1/errno.h
+${LLVM_BASE}/include/c++/v1/exception
+${LLVM_BASE}/include/c++/v1/execution
+${LLVM_BASE}/include/c++/v1/expected
+${LLVM_BASE}/include/c++/v1/experimental/
+${LLVM_BASE}/include/c++/v1/experimental/__simd/
+${LLVM_BASE}/include/c++/v1/experimental/__simd/aligned_tag.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/declaration.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/reference.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/scalar.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/simd.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/simd_mask.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/traits.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/utility.h
+${LLVM_BASE}/include/c++/v1/experimental/__simd/vec_ext.h
+${LLVM_BASE}/include/c++/v1/experimental/iterator
+${LLVM_BASE}/include/c++/v1/experimental/memory
+${LLVM_BASE}/include/c++/v1/experimental/propagate_const
+${LLVM_BASE}/include/c++/v1/experimental/simd
+${LLVM_BASE}/include/c++/v1/experimental/type_traits
+${LLVM_BASE}/include/c++/v1/experimental/utility
+${LLVM_BASE}/include/c++/v1/ext/
+${LLVM_BASE}/include/c++/v1/ext/__hash
+${LLVM_BASE}/include/c++/v1/ext/hash_map
+${LLVM_BASE}/include/c++/v1/ext/hash_set
+${LLVM_BASE}/include/c++/v1/fenv.h
+${LLVM_BASE}/include/c++/v1/filesystem
+${LLVM_BASE}/include/c++/v1/flat_map
+${LLVM_BASE}/include/c++/v1/float.h
+${LLVM_BASE}/include/c++/v1/format
+${LLVM_BASE}/include/c++/v1/forward_list
+${LLVM_BASE}/include/c++/v1/fstream
+${LLVM_BASE}/include/c++/v1/functional
+${LLVM_BASE}/include/c++/v1/future
+${LLVM_BASE}/include/c++/v1/initializer_list
+${LLVM_BASE}/include/c++/v1/inttypes.h
+${LLVM_BASE}/include/c++/v1/iomanip
+${LLVM_BASE}/include/c++/v1/ios
+${LLVM_BASE}/include/c++/v1/iosfwd
+${LLVM_BASE}/include/c++/v1/iostream
+${LLVM_BASE}/include/c++/v1/istream
+${LLVM_BASE}/include/c++/v1/iterator
+${LLVM_BASE}/include/c++/v1/latch
+${LLVM_BASE}/include/c++/v1/libcxx.imp
+${LLVM_BASE}/include/c++/v1/limits
+${LLVM_BASE}/include/c++/v1/list
+${LLVM_BASE}/include/c++/v1/locale
+${LLVM_BASE}/include/c++/v1/map
+${LLVM_BASE}/include/c++/v1/math.h
+${LLVM_BASE}/include/c++/v1/mdspan
+${LLVM_BASE}/include/c++/v1/memory
+${LLVM_BASE}/include/c++/v1/memory_resource
+${LLVM_BASE}/include/c++/v1/module.modulemap
+${LLVM_BASE}/include/c++/v1/mutex
+${LLVM_BASE}/include/c++/v1/new
+${LLVM_BASE}/include/c++/v1/numbers
+${LLVM_BASE}/include/c++/v1/numeric
+${LLVM_BASE}/include/c++/v1/optional
+${LLVM_BASE}/include/c++/v1/ostream
+${LLVM_BASE}/include/c++/v1/print
+${LLVM_BASE}/include/c++/v1/queue
+${LLVM_BASE}/include/c++/v1/random
+${LLVM_BASE}/include/c++/v1/ranges
+${LLVM_BASE}/include/c++/v1/ratio
+${LLVM_BASE}/include/c++/v1/regex
+${LLVM_BASE}/include/c++/v1/scoped_allocator
+${LLVM_BASE}/include/c++/v1/semaphore
+${LLVM_BASE}/include/c++/v1/set
+${LLVM_BASE}/include/c++/v1/shared_mutex
+${LLVM_BASE}/include/c++/v1/source_location
+${LLVM_BASE}/include/c++/v1/span
+${LLVM_BASE}/include/c++/v1/sstream
+${LLVM_BASE}/include/c++/v1/stack
+${LLVM_BASE}/include/c++/v1/stdatomic.h
+${LLVM_BASE}/include/c++/v1/stdbool.h
+${LLVM_BASE}/include/c++/v1/stddef.h
+${LLVM_BASE}/include/c++/v1/stdexcept
+${LLVM_BASE}/include/c++/v1/stdio.h
+${LLVM_BASE}/include/c++/v1/stdlib.h
+${LLVM_BASE}/include/c++/v1/stop_token
+${LLVM_BASE}/include/c++/v1/streambuf
+${LLVM_BASE}/include/c++/v1/string
+${LLVM_BASE}/include/c++/v1/string.h
+${LLVM_BASE}/include/c++/v1/string_view
+${LLVM_BASE}/include/c++/v1/strstream
+${LLVM_BASE}/include/c++/v1/syncstream
+${LLVM_BASE}/include/c++/v1/system_error
+${LLVM_BASE}/include/c++/v1/tgmath.h
+${LLVM_BASE}/include/c++/v1/thread
+${LLVM_BASE}/include/c++/v1/tuple
+${LLVM_BASE}/include/c++/v1/type_traits
+${LLVM_BASE}/include/c++/v1/typeindex
+${LLVM_BASE}/include/c++/v1/typeinfo
+${LLVM_BASE}/include/c++/v1/uchar.h
+${LLVM_BASE}/include/c++/v1/unordered_map
+${LLVM_BASE}/include/c++/v1/unordered_set
+${LLVM_BASE}/include/c++/v1/utility
+${LLVM_BASE}/include/c++/v1/valarray
+${LLVM_BASE}/include/c++/v1/variant
+${LLVM_BASE}/include/c++/v1/vector
+${LLVM_BASE}/include/c++/v1/version
+${LLVM_BASE}/include/c++/v1/wchar.h
+${LLVM_BASE}/include/c++/v1/wctype.h
+${LLVM_BASE}/lib/libc++.modules.json
+@lib ${LLVM_BASE}/lib/libec++.so.${LIBec++_VERSION}
+@lib ${LLVM_BASE}/lib/libec++abi.so.${LIBec++abi_VERSION}
+@static-lib ${LLVM_BASE}/lib/libec++experimental.a
+${LLVM_BASE}/share/libc++/
+${LLVM_BASE}/share/libc++/v1/
+${LLVM_BASE}/share/libc++/v1/std/
+${LLVM_BASE}/share/libc++/v1/std.compat/
+${LLVM_BASE}/share/libc++/v1/std.compat.cppm
+${LLVM_BASE}/share/libc++/v1/std.compat/cassert.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cctype.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cerrno.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cfenv.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cfloat.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cinttypes.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/climits.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/clocale.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cmath.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/csetjmp.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/csignal.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdarg.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstddef.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdint.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdio.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstdlib.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cstring.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/ctime.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cuchar.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cwchar.inc
+${LLVM_BASE}/share/libc++/v1/std.compat/cwctype.inc
+${LLVM_BASE}/share/libc++/v1/std.cppm
+${LLVM_BASE}/share/libc++/v1/std/algorithm.inc
+${LLVM_BASE}/share/libc++/v1/std/any.inc
+${LLVM_BASE}/share/libc++/v1/std/array.inc
+${LLVM_BASE}/share/libc++/v1/std/atomic.inc
+${LLVM_BASE}/share/libc++/v1/std/barrier.inc
+${LLVM_BASE}/share/libc++/v1/std/bit.inc
+${LLVM_BASE}/share/libc++/v1/std/bitset.inc
+${LLVM_BASE}/share/libc++/v1/std/cassert.inc
+${LLVM_BASE}/share/libc++/v1/std/cctype.inc
+${LLVM_BASE}/share/libc++/v1/std/cerrno.inc
+${LLVM_BASE}/share/libc++/v1/std/cfenv.inc
+${LLVM_BASE}/share/libc++/v1/std/cfloat.inc
+${LLVM_BASE}/share/libc++/v1/std/charconv.inc
+${LLVM_BASE}/share/libc++/v1/std/chrono.inc
+${LLVM_BASE}/share/libc++/v1/std/cinttypes.inc
+${LLVM_BASE}/share/libc++/v1/std/climits.inc
+${LLVM_BASE}/share/libc++/v1/std/clocale.inc
+${LLVM_BASE}/share/libc++/v1/std/cmath.inc
+${LLVM_BASE}/share/libc++/v1/std/codecvt.inc
+${LLVM_BASE}/share/libc++/v1/std/compare.inc
+${LLVM_BASE}/share/libc++/v1/std/complex.inc
+${LLVM_BASE}/share/libc++/v1/std/concepts.inc
+${LLVM_BASE}/share/libc++/v1/std/condition_variable.inc
+${LLVM_BASE}/share/libc++/v1/std/coroutine.inc
+${LLVM_BASE}/share/libc++/v1/std/csetjmp.inc
+${LLVM_BASE}/share/libc++/v1/std/csignal.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdarg.inc
+${LLVM_BASE}/share/libc++/v1/std/cstddef.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdint.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdio.inc
+${LLVM_BASE}/share/libc++/v1/std/cstdlib.inc
+${LLVM_BASE}/share/libc++/v1/std/cstring.inc
+${LLVM_BASE}/share/libc++/v1/std/ctime.inc
+${LLVM_BASE}/share/libc++/v1/std/cuchar.inc
+${LLVM_BASE}/share/libc++/v1/std/cwchar.inc
+${LLVM_BASE}/share/libc++/v1/std/cwctype.inc
+${LLVM_BASE}/share/libc++/v1/std/deque.inc
+${LLVM_BASE}/share/libc++/v1/std/exception.inc
+${LLVM_BASE}/share/libc++/v1/std/execution.inc
+${LLVM_BASE}/share/libc++/v1/std/expected.inc
+${LLVM_BASE}/share/libc++/v1/std/filesystem.inc
+${LLVM_BASE}/share/libc++/v1/std/flat_map.inc
+${LLVM_BASE}/share/libc++/v1/std/flat_set.inc
+${LLVM_BASE}/share/libc++/v1/std/format.inc
+${LLVM_BASE}/share/libc++/v1/std/forward_list.inc
+${LLVM_BASE}/share/libc++/v1/std/fstream.inc
+${LLVM_BASE}/share/libc++/v1/std/functional.inc
+${LLVM_BASE}/share/libc++/v1/std/future.inc
+${LLVM_BASE}/share/libc++/v1/std/generator.inc
+${LLVM_BASE}/share/libc++/v1/std/hazard_pointer.inc
+${LLVM_BASE}/share/libc++/v1/std/initializer_list.inc
+${LLVM_BASE}/share/libc++/v1/std/iomanip.inc
+${LLVM_BASE}/share/libc++/v1/std/ios.inc
+${LLVM_BASE}/share/libc++/v1/std/iosfwd.inc
+${LLVM_BASE}/share/libc++/v1/std/iostream.inc
+${LLVM_BASE}/share/libc++/v1/std/istream.inc
+${LLVM_BASE}/share/libc++/v1/std/iterator.inc
+${LLVM_BASE}/share/libc++/v1/std/latch.inc
+${LLVM_BASE}/share/libc++/v1/std/limits.inc
+${LLVM_BASE}/share/libc++/v1/std/list.inc
+${LLVM_BASE}/share/libc++/v1/std/locale.inc
+${LLVM_BASE}/share/libc++/v1/std/map.inc
+${LLVM_BASE}/share/libc++/v1/std/mdspan.inc
+${LLVM_BASE}/share/libc++/v1/std/memory.inc
+${LLVM_BASE}/share/libc++/v1/std/memory_resource.inc
+${LLVM_BASE}/share/libc++/v1/std/mutex.inc
+${LLVM_BASE}/share/libc++/v1/std/new.inc
+${LLVM_BASE}/share/libc++/v1/std/numbers.inc
+${LLVM_BASE}/share/libc++/v1/std/numeric.inc
+${LLVM_BASE}/share/libc++/v1/std/optional.inc
+${LLVM_BASE}/share/libc++/v1/std/ostream.inc
+${LLVM_BASE}/share/libc++/v1/std/print.inc
+${LLVM_BASE}/share/libc++/v1/std/queue.inc
+${LLVM_BASE}/share/libc++/v1/std/random.inc
+${LLVM_BASE}/share/libc++/v1/std/ranges.inc
+${LLVM_BASE}/share/libc++/v1/std/ratio.inc
+${LLVM_BASE}/share/libc++/v1/std/rcu.inc
+${LLVM_BASE}/share/libc++/v1/std/regex.inc
+${LLVM_BASE}/share/libc++/v1/std/scoped_allocator.inc
+${LLVM_BASE}/share/libc++/v1/std/semaphore.inc
+${LLVM_BASE}/share/libc++/v1/std/set.inc
+${LLVM_BASE}/share/libc++/v1/std/shared_mutex.inc
+${LLVM_BASE}/share/libc++/v1/std/source_location.inc
+${LLVM_BASE}/share/libc++/v1/std/span.inc
+${LLVM_BASE}/share/libc++/v1/std/spanstream.inc
+${LLVM_BASE}/share/libc++/v1/std/sstream.inc
+${LLVM_BASE}/share/libc++/v1/std/stack.inc
+${LLVM_BASE}/share/libc++/v1/std/stacktrace.inc
+${LLVM_BASE}/share/libc++/v1/std/stdexcept.inc
+${LLVM_BASE}/share/libc++/v1/std/stdfloat.inc
+${LLVM_BASE}/share/libc++/v1/std/stop_token.inc
+${LLVM_BASE}/share/libc++/v1/std/streambuf.inc
+${LLVM_BASE}/share/libc++/v1/std/string.inc
+${LLVM_BASE}/share/libc++/v1/std/string_view.inc
+${LLVM_BASE}/share/libc++/v1/std/strstream.inc
+${LLVM_BASE}/share/libc++/v1/std/syncstream.inc
+${LLVM_BASE}/share/libc++/v1/std/system_error.inc
+${LLVM_BASE}/share/libc++/v1/std/text_encoding.inc
+${LLVM_BASE}/share/libc++/v1/std/thread.inc
+${LLVM_BASE}/share/libc++/v1/std/tuple.inc
+${LLVM_BASE}/share/libc++/v1/std/type_traits.inc
+${LLVM_BASE}/share/libc++/v1/std/typeindex.inc
+${LLVM_BASE}/share/libc++/v1/std/typeinfo.inc
+${LLVM_BASE}/share/libc++/v1/std/unordered_map.inc
+${LLVM_BASE}/share/libc++/v1/std/unordered_set.inc
+${LLVM_BASE}/share/libc++/v1/std/utility.inc
+${LLVM_BASE}/share/libc++/v1/std/valarray.inc
+${LLVM_BASE}/share/libc++/v1/std/variant.inc
+${LLVM_BASE}/share/libc++/v1/std/vector.inc
+${LLVM_BASE}/share/libc++/v1/std/version.inc
Index: devel/llvm/files/DESCR-libcxx
===================================================================
RCS file: devel/llvm/files/DESCR-libcxx
diff -N devel/llvm/files/DESCR-libcxx
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/llvm/files/DESCR-libcxx	21 May 2025 01:58:01 -0000
@@ -0,0 +1,2 @@
+libc++ is a new implementation of the C++ standard library,
+targeting C++11 and above.
Index: lang/clang/clang.port.mk
===================================================================
RCS file: /cvs/ports/lang/clang/clang.port.mk,v
diff -u -p -u -r1.43 clang.port.mk
--- lang/clang/clang.port.mk	23 Jan 2025 15:11:08 -0000	1.43
+++ lang/clang/clang.port.mk	21 May 2025 01:58:01 -0000
@@ -9,6 +9,11 @@ MODCLANG_LANGS ?=
 MODCLANG_COMPILER_LINKS ?= Yes
 MODCLANG_BUILDDEP ?= Yes
 MODCLANG_RUNDEP ?= No
+MODCLANG_CPPLIB ?= No
+
+.if ${MODCLANG_CPPLIB:L} == "yes" && ${MODCLANG_VERSION} < 19
+ERRORS += "Fatal: ${MODCLANG_LIB_DEPENDS} does not support ports libc++"
+.endif
 
 .if ${MODCLANG_RUNDEP:L} == "yes"
 RUN_DEPENDS+=           ${MODCLANG_RUN_DEPENDS}
@@ -66,6 +71,18 @@ MODCLANG_CPPLIBDEP = ${MODGCC4_CPPLIBDEP
 LIB_DEPENDS += ${MODCLANG_CPPLIBDEP}
 MODCLANG_CPPWANTLIB = ${MODGCC4_CPPWANTLIB}
 LIBECXX = ${MODCLANG_CPPWANTLIB}
+.    elif ${MODCLANG_CPPLIB:L} == "yes"
+# uses libec++
+MODCLANG_CPPLIBDEP = ${MODCLANG_LIB_DEPENDS},-libcxx
+LIB_DEPENDS += ${MODCLANG_CPPLIBDEP}
+MODCLANG_CPPWANTLIB =	llvm${MODCLANG_VERSION}/lib/ec++ \
+			llvm${MODCLANG_VERSION}/lib/ec++abi \
+			pthread
+LIBECXX = ${MODCLANG_CPPWANTLIB}
+MODCLANG_BASE = ${LOCALBASE}/llvm${MODCLANG_VERSION}
+CONFIGURE_ENV += CXXFLAGS="-nostdinc++ -isystem ${MODCLANG_BASE}/include/c++/v1"
+CONFIGURE_ENV += LDFLAGS="-nostdlib++ -Wl,-rpath,${MODCLANG_BASE}/lib \
+			 -L${MODCLANG_BASE}/lib -lec++ -lec++abi"
 .    else
 # uses libc++
 MODCLANG_CPPLIBDEP =