pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lang/gcc13-gnat: Update to 13.3.0



Module Name:	pkgsrc-wip
Committed By:	Dmytro Kazankov <dmytro.kazankov%gmail.com@localhost>
Pushed By:	dkazankov
Date:		Fri Sep 13 10:51:20 2024 +0300
Changeset:	7e03cef44d5f5e9f75f13512cc68fbc67c39e2a5

Modified Files:
	gcc13-gnat/Makefile
	gcc13-gnat/PLIST
	gcc13-gnat/buildlink3.mk
	gcc13-gnat/distinfo
	gcc13-gnat/options.mk
Added Files:
	gcc13-gnat-libs/COMMIT_MSG
	gcc13-gnat-libs/DESCR
	gcc13-gnat-libs/Makefile
	gcc13-gnat-libs/PLIST
	gcc13-gnat-libs/buildlink3.mk
	gcc13-gnat/COMMIT_MSG
Removed Files:
	gcc13-gnat/patches/patch-gcc_Makefile.in

Log Message:
lang/gcc13-gnat: Update to 13.3.0

* Package updated to GCC 13.3 release
* Patches adjusted to new codebase
* New gcc13-gnat-libs package with dynamic libs only
* Runpaths handling improved

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=7e03cef44d5f5e9f75f13512cc68fbc67c39e2a5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 gcc13-gnat-libs/COMMIT_MSG               |    4 +
 gcc13-gnat-libs/DESCR                    |    5 +
 gcc13-gnat-libs/Makefile                 |   74 ++
 gcc13-gnat-libs/PLIST                    |   32 +
 gcc13-gnat-libs/buildlink3.mk            |   37 +
 gcc13-gnat/COMMIT_MSG                    |    6 +
 gcc13-gnat/Makefile                      |   45 +-
 gcc13-gnat/PLIST                         | 1628 +++++++++++++++---------------
 gcc13-gnat/buildlink3.mk                 |    4 +-
 gcc13-gnat/distinfo                      |    1 -
 gcc13-gnat/options.mk                    |   10 +-
 gcc13-gnat/patches/patch-gcc_Makefile.in |   15 -
 12 files changed, 999 insertions(+), 862 deletions(-)

diffs:
diff --git a/gcc13-gnat-libs/COMMIT_MSG b/gcc13-gnat-libs/COMMIT_MSG
new file mode 100644
index 0000000000..41a9de867e
--- /dev/null
+++ b/gcc13-gnat-libs/COMMIT_MSG
@@ -0,0 +1,4 @@
+lang/gcc13-gnat-libs: Add 13.3.0nb1
+
+* Initial release of GNAT support libraries,
+  version 13.3
diff --git a/gcc13-gnat-libs/DESCR b/gcc13-gnat-libs/DESCR
new file mode 100644
index 0000000000..e110d7fdd5
--- /dev/null
+++ b/gcc13-gnat-libs/DESCR
@@ -0,0 +1,5 @@
+The GNU Compiler Collection (GCC) GNAT libraries
+
+This packages provides GNAT support libraries in a specific location and allows
+packages to depend on just the libraries rather than having to pull in the full
+GNAT package.
diff --git a/gcc13-gnat-libs/Makefile b/gcc13-gnat-libs/Makefile
new file mode 100644
index 0000000000..10b8cdb7a0
--- /dev/null
+++ b/gcc13-gnat-libs/Makefile
@@ -0,0 +1,74 @@
+# $NetBSD: Makefile,v 1.2 2023/06/06 12:41:42 riastradh Exp $
+
+GCC_PKGNAME=		gcc13
+GCC13_DIST_VERSION=	13.3.0
+
+DISTNAME=	gcc-${GCC13_DIST_VERSION}
+PKGNAME=	${GCC_PKGNAME}-gnat-libs-${GCC13_DIST_VERSION}
+
+## The PKGREVISION of this package needs to be at least 1 more than the
+## PKGREVISION of the lang/gcc13 package so that with the dependence pattern
+## '{gcc13,gcc13-libs}>=13.1.*' pkg_add will choose gcc13-libs over gcc13.
+PKGREVISION=	1
+
+CATEGORIES=	lang
+MASTER_SITES=	# empty
+DISTFILES=	# empty
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	https://gcc.gnu.org/
+COMMENT=	The GNU Compiler Collection (GCC) support shared libraries
+LICENSE=	gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
+
+USE_TOOLS+=	pax
+
+CHECK_RELRO_SUPPORTED=	no
+
+## Depend on exactly ${GCC13_DIST_VERSION}.
+TOOL_DEPENDS+=		${GCC_PKGNAME}-gnat-${GCC13_DIST_VERSION}{,nb[0-9]*}:../../wip/gcc13-gnat
+TOOL_DEPENDS+=		patchelf-*:../../devel/patchelf
+
+.include "../../mk/bsd.prefs.mk"
+
+LIBGCC_SUBPREFIX=	${GCC_PKGNAME}-gnat
+LIBGCC_PREFIX=		${LOCALBASE}/${LIBGCC_SUBPREFIX}
+GCC_TARGET_MACHINE?=	${MACHINE_GNU_PLATFORM}
+BUILD_DEFS+=		GCC_TARGET_MACHINE
+
+.if ${SHLIB_TYPE} == "dylib"
+SHLIB_EXT=	dylib
+.else
+SHLIB_EXT=	so
+.endif
+
+LIBRARY_FILES=	${WRKDIR}/list.txt
+TARGET_LIBDIR=	${LIBGCC_SUBPREFIX}/${GCC_TARGET_MACHINE}/lib
+
+GENERATE_PLIST+=	cd ${DESTDIR}${PREFIX}	\
+			${FIND} lib \( -type f -or -type l \) -print | ${SORT} || \
+			${ECHO} '@pkgdir ${TARGET_LIBDIR}' ;
+
+do-build:
+	${PKG_INFO} -qL '${GCC_PKGNAME}-gnat-${GCC13_DIST_VERSION}*' | \
+	${SED} -n -e's,^${LIBGCC_PREFIX}/,,p' | \
+	${SED} -n -e'/lib\/.*\/crt.*\.o/p' \
+		-e'/lib\/.*\/adalib\/lib.*\.so.*/p' \
+		-e'/.*\/ada_target_properties/p' \
+		-e'/lib\/lib.*\.so.*/p' > \
+		${LIBRARY_FILES}
+
+do-install:
+	${TEST} -d ${DESTDIR}${LOCALBASE}/${TARGET_LIBDIR} || \
+		${MKDIR} ${DESTDIR}${LOCALBASE}/${TARGET_LIBDIR}
+	cd ${LIBGCC_PREFIX} && \
+		${PAX} -rw -s '/^\(.*\/\)\([^\/]*\)/\2/' \
+		${DESTDIR}${LOCALBASE}/${TARGET_LIBDIR} <${LIBRARY_FILES}
+	echo "Patching RPATH in destination libraries..."
+	cd ${DESTDIR}${LOCALBASE} && \
+		${FIND} ${TARGET_LIBDIR} \( -name \*.so\* -and -type f \) -print \
+			-exec patchelf --force-rpath --set-rpath '$$ORIGIN:${LOCALBASE}/${TARGET_LIBDIR}' {} \;
+
+.include "../../mk/dlopen.buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/gcc13-gnat-libs/PLIST b/gcc13-gnat-libs/PLIST
new file mode 100644
index 0000000000..64e5ed5719
--- /dev/null
+++ b/gcc13-gnat-libs/PLIST
@@ -0,0 +1,32 @@
+@comment $NetBSD$
+gcc13-gnat/x86_64--netbsd/lib/ada_target_properties
+gcc13-gnat/x86_64--netbsd/lib/crtbegin.o
+gcc13-gnat/x86_64--netbsd/lib/crtbeginS.o
+gcc13-gnat/x86_64--netbsd/lib/crtbeginT.o
+gcc13-gnat/x86_64--netbsd/lib/crtend.o
+gcc13-gnat/x86_64--netbsd/lib/crtendS.o
+gcc13-gnat/x86_64--netbsd/lib/libatomic.so
+gcc13-gnat/x86_64--netbsd/lib/libatomic.so.3
+gcc13-gnat/x86_64--netbsd/lib/libatomic.so.3.0
+gcc13-gnat/x86_64--netbsd/lib/libcc1.so
+gcc13-gnat/x86_64--netbsd/lib/libcc1.so.0
+gcc13-gnat/x86_64--netbsd/lib/libcc1.so.0.0
+gcc13-gnat/x86_64--netbsd/lib/libgcc_s.so
+gcc13-gnat/x86_64--netbsd/lib/libgcc_s.so.1
+gcc13-gnat/x86_64--netbsd/lib/libgnarl-13.so
+gcc13-gnat/x86_64--netbsd/lib/libgnarl.so
+gcc13-gnat/x86_64--netbsd/lib/libgnat-13.so
+gcc13-gnat/x86_64--netbsd/lib/libgnat.so
+gcc13-gnat/x86_64--netbsd/lib/libgomp.so
+gcc13-gnat/x86_64--netbsd/lib/libgomp.so.1
+gcc13-gnat/x86_64--netbsd/lib/libgomp.so.1.0
+gcc13-gnat/x86_64--netbsd/lib/libitm.so
+gcc13-gnat/x86_64--netbsd/lib/libitm.so.1
+gcc13-gnat/x86_64--netbsd/lib/libitm.so.1.0
+gcc13-gnat/x86_64--netbsd/lib/libquadmath.so
+gcc13-gnat/x86_64--netbsd/lib/libquadmath.so.0
+gcc13-gnat/x86_64--netbsd/lib/libquadmath.so.0.0
+gcc13-gnat/x86_64--netbsd/lib/libstdc++.so
+gcc13-gnat/x86_64--netbsd/lib/libstdc++.so.7
+gcc13-gnat/x86_64--netbsd/lib/libstdc++.so.7.32
+gcc13-gnat/x86_64--netbsd/lib/libstdc++.so.7.32-gdb.py
diff --git a/gcc13-gnat-libs/buildlink3.mk b/gcc13-gnat-libs/buildlink3.mk
new file mode 100644
index 0000000000..e238d1e5d4
--- /dev/null
+++ b/gcc13-gnat-libs/buildlink3.mk
@@ -0,0 +1,37 @@
+# $NetBSD: buildlink3.mk,v 1.0 2024/08/08 00:00:00 dkazankov Exp $
+
+BUILDLINK_TREE+=	gcc13-gnat-libs
+
+.if !defined(GCC13_GNAT_LIBS_BUILDLINK3_MK)
+GCC13_GNAT_LIBS_BUILDLINK3_MK:=
+
+.if !empty(USE_PKGSRC_GCC_RUNTIME:M[Yy][Ee][Ss])
+BUILDLINK_API_DEPENDS.gcc13-gnat-libs+=	gcc13-gnat-libs>=13.2.0
+.else
+BUILDLINK_API_DEPENDS.gcc13-gnat-libs+=	{gcc13-gnat,gcc13-gnat-libs}>=13.2.0
+.endif
+BUILDLINK_PKGSRCDIR.gcc13-gnat-libs=	../../wip/gcc13-gnat-libs
+BUILDLINK_DEPMETHOD.gcc13-gnat-libs?=	full
+
+GCC_TARGET_MACHINE?=	${MACHINE_GNU_PLATFORM}
+
+TARGET_LIBDIR.gcc13-gnat-libs=	${PREFIX}/gcc13-gnat/${GCC_TARGET_MACHINE}/lib
+
+BUILDLINK_PASSTHRU_DIRS+=	${TARGET_LIBDIR.gcc13-gnat-libs}
+
+BUILDLINK_FILES.gcc13-gnat-libs=	#empty
+BUILDLINK_AUTO_VARS.gcc13-gnat-libs=	no
+BUILDLINK_RPATHDIRS.gcc13-gnat-libs=	${TARGET_LIBDIR.gcc13-gnat-libs}
+
+.if defined(LD_RUN_PATH)
+LD_RUN_PATH:=	${TARGET_LIBDIR.gcc13-gnat-libs}:${LD_RUN_PATH}
+.else
+LD_RUN_PATH:=	${TARGET_LIBDIR.gcc13-gnat-libs}
+.endif
+
+.include "../../mk/dlopen.buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+
+.endif # GCC13_GNAT_LIBS_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-gcc13-gnat-libs
diff --git a/gcc13-gnat/COMMIT_MSG b/gcc13-gnat/COMMIT_MSG
new file mode 100644
index 0000000000..82d736f760
--- /dev/null
+++ b/gcc13-gnat/COMMIT_MSG
@@ -0,0 +1,6 @@
+lang/gcc13-gnat: Update to 13.3.0
+
+* Package updated to GCC 13.3 release
+* Patches adjusted to new codebase
+* New gcc13-gnat-libs package with dynamic libs only
+* Runpaths handling improved
diff --git a/gcc13-gnat/Makefile b/gcc13-gnat/Makefile
index d7f82fe988..4bff0ecdec 100644
--- a/gcc13-gnat/Makefile
+++ b/gcc13-gnat/Makefile
@@ -25,7 +25,6 @@ USE_TOOLS.NetBSD+=	gsed
 
 CHECK_PIE_SUPPORTED=	no
 CHECK_RELRO_SUPPORTED=	no
-#CHECK_RELRO_SKIP=	${GCC_PKGNAME}-gnat/lib/gcc/x86_64--netbsd/adalib/libgna*.so
 
 .include "../../mk/bsd.prefs.mk"
 
@@ -53,23 +52,28 @@ GNU_CONFIGURE_PREFIX=	${GNAT_PREFIX}
 
 CONFIGURE_ARGS+=	--disable-libstdcxx-pch
 
+STAGE1_LDFLAGS=		${LDFLAGS} -static
+
 # In some cases LINKER_RPATH_FLAG needs a trailing space.
 LINKER_RPATH_FLAG:=	${LINKER_RPATH_FLAG:S/-rpath/& /}
 
 ## The Library rpath to use in end programs.
-LDFLAGS_FOR_TARGET=	${LDFLAGS:M${COMPILER_RPATH_FLAG}*:N*/usr/lib*} ${LDFLAGS:M-Wl,-z*}
+LDFLAGS_FOR_TARGET=	#empty
 
 # The "-static-libstdc++ -static-libgcc" flags are normally added to the
 # boot-ldflags by configure but because we are supply the boot-ldflags
 # we mash supply them.
-BOOT_LDFLAGS=		-static-libstdc++ -static-libgcc ${LDFLAGS_FOR_TARGET}
+BOOT_LDFLAGS=		${LDFLAGS_FOR_TARGET}
+BOOT_LDFLAGS+=		-static-libstdc++ -static-libgcc
+BOOT_LDFLAGS+=		${COMPILER_RPATH_FLAG}${GNAT_PREFIX}/lib
+BOOT_LDFLAGS+=		${COMPILER_RPATH_FLAG}${GNAT_PREFIX}/lib/gcc/${MACHINE_GNU_PLATFORM}/${GCC_DIST_VERSION}/adalib
 # Needed on Darwin when LDFLAGS point to a SDK
+.if !empty(OSX_SDK_PATH)
 BOOT_LDFLAGS+=		${LDFLAGS:M-Wl,-syslibroot*}
+.endif
 # GCC does not understand this option; remove it, or stage build will fail
 BUILDLINK_TRANSFORM+=	rm:-stdlib=libc++
 
-STAGE1_LDFLAGS=	-static ${BOOT_LDFLAGS}
-
 # Disable fixincludes on SmartOS, header changes result in broken includes
 # being generated, see https://github.com/joyent/pkgsrc-legacy/issues/270
 .if ${OS_VARIANT} == "SmartOS"
@@ -92,9 +96,6 @@ SUBST_SED.libstdc=	-e 's,libtool_VERSION=6:,libtool_VERSION=7:,g'
 CONFIGURE_ARGS+=	--enable-libssp
 .endif
 
-## For target librarys and libjava programs.
-CONFIGURE_ENV+=	LDFLAGS_FOR_TARGET=${LDFLAGS_FOR_TARGET:Q}
-
 .if ${USE_CROSS_COMPILE:U:tl} == "yes"
 CONFIGURE_ENV+=	CC_FOR_BUILD=${NATIVE_CC:Q}
 CONFIGURE_ENV+=	CXX_FOR_BUILD=${NATIVE_CXX:Q}
@@ -102,8 +103,11 @@ CONFIGURE_ENV+=	CXX_FOR_BUILD=${NATIVE_CXX:Q}
 
 CONFIGURE_ARGS+=	--enable-languages=c,c++,ada --enable-stage1-languages=c++,ada
 # This will create slightly slower compiler
+CONFIGURE_ARGS+=	--enable-shared
 CONFIGURE_ARGS+=	--enable-host-shared
+CONFIGURE_ARGS+=	--enable-long-long
 CONFIGURE_ARGS+=	--with-local-prefix=${GNAT_PREFIX:Q}
+CONFIGURE_ARGS+=	--with-gxx-include-dir=${GNAT_PREFIX}/include/c++
 CONFIGURE_ARGS+=	--enable-__cxa_atexit
 CONFIGURE_ARGS+=	--enable-threads=posix
 CONFIGURE_ARGS+=	--with-stage1-ldflags=${STAGE1_LDFLAGS:Q}
@@ -149,21 +153,21 @@ MAKE_ENV+=	lt_cv_path_SED=${TOOLS_SED}
 # Determine whether to use binutils
 .if ${OPSYS} == "SunOS"
 .  if exists(/usr/sfw/bin/gobjdump)
-CONFIGURE_ENV+=OBJDUMP=/usr/sfw/bin/gobjdump
+CONFIGURE_ENV+=	OBJDUMP=/usr/sfw/bin/gobjdump
 .  endif
 .  if exists(/usr/bin/ld)
-CONFIGURE_ARGS+=--without-gnu-ld --with-ld=/usr/bin/ld
+CONFIGURE_ARGS+=	--without-gnu-ld --with-ld=/usr/bin/ld
 .  else
-CONFIGURE_ARGS+=--without-gnu-ld --with-ld=/usr/ccs/bin/ld
+CONFIGURE_ARGS+=	--without-gnu-ld --with-ld=/usr/ccs/bin/ld
 .  endif
 .  if exists(/usr/sfw/bin/gas)
-CONFIGURE_ARGS+=--with-gnu-as --with-as=/usr/sfw/bin/gas
+CONFIGURE_ARGS+=	--with-gnu-as --with-as=/usr/sfw/bin/gas
 .  elif exists(/usr/ccs/bin/as)
-CONFIGURE_ARGS+=--without-gnu-as --with-as=/usr/ccs/bin/as
+CONFIGURE_ARGS+=	--without-gnu-as --with-as=/usr/ccs/bin/as
 .  else
 BUILDLINK_DEPMETHOD.binutils=full
 .    include "../../devel/binutils/buildlink3.mk"
-CONFIGURE_ARGS+=--with-gnu-as --with-as=${PREFIX}/bin/gas
+CONFIGURE_ARGS+=	--with-gnu-as --with-as=${PREFIX}/bin/gas
 .  endif
 .endif
 
@@ -189,16 +193,7 @@ GENERATE_PLIST+= \
 	${FIND} ${GNAT_SUBPREFIX} \( -type f -or -type l \) -print | ${SORT};
 
 .include "../../archivers/zstd/buildlink3.mk"
-CONFIGURE_ARGS+=--with-zstd=${BUILDLINK_PREFIX.zstd}
-
-CHECK_BUILTIN.zlib=yes
-.include "../../devel/zlib/builtin.mk"
-CHECK_BUILTIN.zlib=no
-.if ${USE_BUILTIN.zlib:tl} == yes
-CONFIGURE_ARGS+=--with-system-zlib
-.else
-CONFIGURE_ARGS+=--without-system-zlib
-.endif
+CONFIGURE_ARGS+=	--with-zstd=${BUILDLINK_PREFIX.zstd}
 
 .include "../../mk/dlopen.buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"
@@ -212,6 +207,8 @@ post-test:
 	${INFO_MSG} "Test summary are available in ${WRKDIR}/test_summary.log"
 
 post-install:
+# Fix group write mode
+	${CHMOD} g-w ${DESTDIR}${GNAT_PREFIX}/lib/gcc/${MACHINE_GNU_PLATFORM}/${GCC_DIST_VERSION}/adainclude/standard.ads.h
 # Create old name that modern gnat no longer provides
 	${TEST} -f ${DESTDIR}${GNAT_PREFIX}/bin/gnat && \
 		( cd ${DESTDIR}${GNAT_PREFIX}/bin ; ${LN} -f gnat ada )
diff --git a/gcc13-gnat/PLIST b/gcc13-gnat/PLIST
index 0e25aafc56..fbbb6c6d3e 100644
--- a/gcc13-gnat/PLIST
+++ b/gcc13-gnat/PLIST
@@ -28,820 +28,820 @@ gcc13-gnat/bin/x86_64--netbsd-gcc-${PKGVERSION}
 gcc13-gnat/bin/x86_64--netbsd-gcc-ar
 gcc13-gnat/bin/x86_64--netbsd-gcc-nm
 gcc13-gnat/bin/x86_64--netbsd-gcc-ranlib
-gcc13-gnat/include/c++/${PKGVERSION}/algorithm
-gcc13-gnat/include/c++/${PKGVERSION}/any
-gcc13-gnat/include/c++/${PKGVERSION}/array
-gcc13-gnat/include/c++/${PKGVERSION}/atomic
-gcc13-gnat/include/c++/${PKGVERSION}/backward/auto_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/backward/backward_warning.h
-gcc13-gnat/include/c++/${PKGVERSION}/backward/binders.h
-gcc13-gnat/include/c++/${PKGVERSION}/backward/hash_fun.h
-gcc13-gnat/include/c++/${PKGVERSION}/backward/hash_map
-gcc13-gnat/include/c++/${PKGVERSION}/backward/hash_set
-gcc13-gnat/include/c++/${PKGVERSION}/backward/hashtable.h
-gcc13-gnat/include/c++/${PKGVERSION}/backward/strstream
-gcc13-gnat/include/c++/${PKGVERSION}/barrier
-gcc13-gnat/include/c++/${PKGVERSION}/bit
-gcc13-gnat/include/c++/${PKGVERSION}/bits/algorithmfwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/align.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/alloc_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/allocated_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/atomic_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/atomic_futex.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/atomic_lockfree_defines.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/atomic_timed_wait.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/atomic_wait.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/basic_ios.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/basic_ios.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/basic_string.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/basic_string.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/boost_concept_check.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/c++0x_warning.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/char_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/charconv.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/chrono.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/chrono_io.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/codecvt.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/concept_check.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/cow_string.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/cpp_type_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/cxxabi_forced.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/cxxabi_init_exception.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/deque.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/enable_special_members.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/erase_if.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/exception.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/exception_defines.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/exception_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/forward_list.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/forward_list.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/fs_dir.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/fs_fwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/fs_ops.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/fs_path.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/fstream.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/functexcept.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/functional_hash.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/gslice.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/gslice_array.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/hash_bytes.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/hashtable.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/hashtable_policy.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/indirect_array.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/invoke.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ios_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/istream.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/iterator_concepts.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/list.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_classes.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_classes.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_conv.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_facets.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_facets.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_facets_nonio.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/locale_facets_nonio.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/localefwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/mask_array.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/max_size_type.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/memory_resource.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/memoryfwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/mofunc_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/move.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/move_only_function.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/nested_exception.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/new_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/node_handle.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ostream.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ostream_insert.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/parse_numbers.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/postypes.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/predefined_ops.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ptr_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/quoted_string.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/random.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/random.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/range_access.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_algo.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_algobase.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_cmp.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_uninitialized.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/ranges_util.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/refwrap.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_automaton.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_automaton.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_compiler.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_compiler.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_constants.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_error.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_executor.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_executor.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_scanner.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/regex_scanner.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/requires_hosted.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/semaphore_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/shared_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/shared_ptr_atomic.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/shared_ptr_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/slice_array.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/specfun.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/sstream.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/std_abs.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/std_function.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/std_mutex.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/std_thread.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_algo.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_algobase.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_bvector.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_construct.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_deque.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_function.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_heap.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_iterator_base_funcs.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_iterator_base_types.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_list.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_map.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_multimap.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_multiset.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_numeric.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_pair.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_queue.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_raw_storage_iter.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_relops.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_set.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_stack.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_tempbuf.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_tree.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_uninitialized.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stl_vector.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stream_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/streambuf.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/streambuf_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/string_view.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/stringfwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/this_thread_sleep.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/uniform_int_dist.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/unique_lock.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/unique_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/unordered_map.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/unordered_set.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/uses_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/uses_allocator_args.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/utility.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/valarray_after.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/valarray_array.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/valarray_array.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bits/valarray_before.h
-gcc13-gnat/include/c++/${PKGVERSION}/bits/vector.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/bitset
-gcc13-gnat/include/c++/${PKGVERSION}/cassert
-gcc13-gnat/include/c++/${PKGVERSION}/ccomplex
-gcc13-gnat/include/c++/${PKGVERSION}/cctype
-gcc13-gnat/include/c++/${PKGVERSION}/cerrno
-gcc13-gnat/include/c++/${PKGVERSION}/cfenv
-gcc13-gnat/include/c++/${PKGVERSION}/cfloat
-gcc13-gnat/include/c++/${PKGVERSION}/charconv
-gcc13-gnat/include/c++/${PKGVERSION}/chrono
-gcc13-gnat/include/c++/${PKGVERSION}/cinttypes
-gcc13-gnat/include/c++/${PKGVERSION}/ciso646
-gcc13-gnat/include/c++/${PKGVERSION}/climits
-gcc13-gnat/include/c++/${PKGVERSION}/clocale
-gcc13-gnat/include/c++/${PKGVERSION}/cmath
-gcc13-gnat/include/c++/${PKGVERSION}/codecvt
-gcc13-gnat/include/c++/${PKGVERSION}/compare
-gcc13-gnat/include/c++/${PKGVERSION}/complex
-gcc13-gnat/include/c++/${PKGVERSION}/complex.h
-gcc13-gnat/include/c++/${PKGVERSION}/concepts
-gcc13-gnat/include/c++/${PKGVERSION}/condition_variable
-gcc13-gnat/include/c++/${PKGVERSION}/coroutine
-gcc13-gnat/include/c++/${PKGVERSION}/csetjmp
-gcc13-gnat/include/c++/${PKGVERSION}/csignal
-gcc13-gnat/include/c++/${PKGVERSION}/cstdalign
-gcc13-gnat/include/c++/${PKGVERSION}/cstdarg
-gcc13-gnat/include/c++/${PKGVERSION}/cstdbool
-gcc13-gnat/include/c++/${PKGVERSION}/cstddef
-gcc13-gnat/include/c++/${PKGVERSION}/cstdint
-gcc13-gnat/include/c++/${PKGVERSION}/cstdio
-gcc13-gnat/include/c++/${PKGVERSION}/cstdlib
-gcc13-gnat/include/c++/${PKGVERSION}/cstring
-gcc13-gnat/include/c++/${PKGVERSION}/ctgmath
-gcc13-gnat/include/c++/${PKGVERSION}/ctime
-gcc13-gnat/include/c++/${PKGVERSION}/cuchar
-gcc13-gnat/include/c++/${PKGVERSION}/cwchar
-gcc13-gnat/include/c++/${PKGVERSION}/cwctype
-gcc13-gnat/include/c++/${PKGVERSION}/cxxabi.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/assertions.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/bitset
-gcc13-gnat/include/c++/${PKGVERSION}/debug/debug.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/deque
-gcc13-gnat/include/c++/${PKGVERSION}/debug/formatter.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/forward_list
-gcc13-gnat/include/c++/${PKGVERSION}/debug/functions.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/helper_functions.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/list
-gcc13-gnat/include/c++/${PKGVERSION}/debug/macros.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/map
-gcc13-gnat/include/c++/${PKGVERSION}/debug/map.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/multimap.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/multiset.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_container.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_iterator.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_local_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_local_iterator.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_sequence.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_sequence.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_unordered_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_unordered_container.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/safe_unordered_container.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/debug/set
-gcc13-gnat/include/c++/${PKGVERSION}/debug/set.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/stl_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/debug/string
-gcc13-gnat/include/c++/${PKGVERSION}/debug/unordered_map
-gcc13-gnat/include/c++/${PKGVERSION}/debug/unordered_set
-gcc13-gnat/include/c++/${PKGVERSION}/debug/vector
-gcc13-gnat/include/c++/${PKGVERSION}/decimal/decimal
-gcc13-gnat/include/c++/${PKGVERSION}/decimal/decimal.h
-gcc13-gnat/include/c++/${PKGVERSION}/deque
-gcc13-gnat/include/c++/${PKGVERSION}/exception
-gcc13-gnat/include/c++/${PKGVERSION}/execution
-gcc13-gnat/include/c++/${PKGVERSION}/expected
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/algorithm
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/any
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/array
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/fs_dir.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/fs_fwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/fs_ops.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/fs_path.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/lfts_config.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/net.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/numeric_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/shared_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_builtin.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_converter.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_detail.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_fixed_size.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_math.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_neon.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_ppc.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_scalar.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_x86.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/simd_x86_conversions.h
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/bits/string_view.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/buffer
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/chrono
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/contract
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/deque
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/executor
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/filesystem
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/forward_list
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/functional
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/internet
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/io_context
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/iterator
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/list
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/map
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/memory
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/memory_resource
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/net
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/netfwd
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/numeric
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/optional
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/propagate_const
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/random
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/ratio
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/regex
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/scope
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/set
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/simd
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/socket
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/source_location
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/string
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/string_view
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/synchronized_value
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/system_error
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/timer
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/tuple
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/type_traits
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/unordered_map
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/unordered_set
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/utility
-gcc13-gnat/include/c++/${PKGVERSION}/experimental/vector
-gcc13-gnat/include/c++/${PKGVERSION}/ext/algorithm
-gcc13-gnat/include/c++/${PKGVERSION}/ext/aligned_buffer.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/alloc_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/atomicity.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/bitmap_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/cast.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/cmath
-gcc13-gnat/include/c++/${PKGVERSION}/ext/codecvt_specializations.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/concurrence.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/debug_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/enc_filebuf.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/extptr_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/functional
-gcc13-gnat/include/c++/${PKGVERSION}/ext/hash_map
-gcc13-gnat/include/c++/${PKGVERSION}/ext/hash_set
-gcc13-gnat/include/c++/${PKGVERSION}/ext/iterator
-gcc13-gnat/include/c++/${PKGVERSION}/ext/malloc_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/memory
-gcc13-gnat/include/c++/${PKGVERSION}/ext/mt_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/new_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/numeric
-gcc13-gnat/include/c++/${PKGVERSION}/ext/numeric_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/assoc_container.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/branch_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/cond_dealtor.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/container_base_dispatch.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/debug_map_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/node.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/node.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/standard_policies.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_trace_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/type_utils.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/types_traits.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/exception.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/hash_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/list_update_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/priority_queue.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/tag_and_trait.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/tree_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pb_ds/trie_policy.hpp
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pod_char_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pointer.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/pool_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/random
-gcc13-gnat/include/c++/${PKGVERSION}/ext/random.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/ext/rb_tree
-gcc13-gnat/include/c++/${PKGVERSION}/ext/rc_string_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/rope
-gcc13-gnat/include/c++/${PKGVERSION}/ext/ropeimpl.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/slist
-gcc13-gnat/include/c++/${PKGVERSION}/ext/sso_string_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/stdio_filebuf.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/stdio_sync_filebuf.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/string_conversions.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/throw_allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/type_traits.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/typelist.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/vstring.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/vstring.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/ext/vstring_fwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/ext/vstring_util.h
-gcc13-gnat/include/c++/${PKGVERSION}/fenv.h
-gcc13-gnat/include/c++/${PKGVERSION}/filesystem
-gcc13-gnat/include/c++/${PKGVERSION}/format
-gcc13-gnat/include/c++/${PKGVERSION}/forward_list
-gcc13-gnat/include/c++/${PKGVERSION}/fstream
-gcc13-gnat/include/c++/${PKGVERSION}/functional
-gcc13-gnat/include/c++/${PKGVERSION}/future
-gcc13-gnat/include/c++/${PKGVERSION}/initializer_list
-gcc13-gnat/include/c++/${PKGVERSION}/iomanip
-gcc13-gnat/include/c++/${PKGVERSION}/ios
-gcc13-gnat/include/c++/${PKGVERSION}/iosfwd
-gcc13-gnat/include/c++/${PKGVERSION}/iostream
-gcc13-gnat/include/c++/${PKGVERSION}/istream
-gcc13-gnat/include/c++/${PKGVERSION}/iterator
-gcc13-gnat/include/c++/${PKGVERSION}/latch
-gcc13-gnat/include/c++/${PKGVERSION}/limits
-gcc13-gnat/include/c++/${PKGVERSION}/list
-gcc13-gnat/include/c++/${PKGVERSION}/locale
-gcc13-gnat/include/c++/${PKGVERSION}/map
-gcc13-gnat/include/c++/${PKGVERSION}/math.h
-gcc13-gnat/include/c++/${PKGVERSION}/memory
-gcc13-gnat/include/c++/${PKGVERSION}/memory_resource
-gcc13-gnat/include/c++/${PKGVERSION}/mutex
-gcc13-gnat/include/c++/${PKGVERSION}/new
-gcc13-gnat/include/c++/${PKGVERSION}/numbers
-gcc13-gnat/include/c++/${PKGVERSION}/numeric
-gcc13-gnat/include/c++/${PKGVERSION}/optional
-gcc13-gnat/include/c++/${PKGVERSION}/ostream
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/algo.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/algobase.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/algorithm
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/algorithmfwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/balanced_quicksort.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/base.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/basic_iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/checkers.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/compatibility.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/compiletime_settings.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/equally_split.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/features.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/find.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/find_selectors.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/for_each.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/for_each_selectors.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/iterator.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/list_partition.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/losertree.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/merge.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/multiseq_selection.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/multiway_merge.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/multiway_mergesort.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/numeric
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/numericfwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/omp_loop.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/omp_loop_static.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/par_loop.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/parallel.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/partial_sum.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/partition.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/queue.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/quicksort.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/random_number.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/random_shuffle.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/search.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/set_operations.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/settings.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/sort.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/tags.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/types.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/unique_copy.h
-gcc13-gnat/include/c++/${PKGVERSION}/parallel/workstealing.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/algorithm_fwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/algorithm_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/execution_defs.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/execution_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_algorithm_defs.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_algorithm_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_execution_defs.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_memory_defs.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_memory_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_numeric_defs.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/glue_numeric_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/memory_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/numeric_fwd.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/numeric_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/parallel_backend.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/parallel_backend_serial.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/parallel_backend_tbb.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/parallel_backend_utils.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/parallel_impl.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/pstl_config.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/unseq_backend_simd.h
-gcc13-gnat/include/c++/${PKGVERSION}/pstl/utils.h
-gcc13-gnat/include/c++/${PKGVERSION}/queue
-gcc13-gnat/include/c++/${PKGVERSION}/random
-gcc13-gnat/include/c++/${PKGVERSION}/ranges
-gcc13-gnat/include/c++/${PKGVERSION}/ratio
-gcc13-gnat/include/c++/${PKGVERSION}/regex
-gcc13-gnat/include/c++/${PKGVERSION}/scoped_allocator
-gcc13-gnat/include/c++/${PKGVERSION}/semaphore
-gcc13-gnat/include/c++/${PKGVERSION}/set
-gcc13-gnat/include/c++/${PKGVERSION}/shared_mutex
-gcc13-gnat/include/c++/${PKGVERSION}/source_location
-gcc13-gnat/include/c++/${PKGVERSION}/span
-gcc13-gnat/include/c++/${PKGVERSION}/spanstream
-gcc13-gnat/include/c++/${PKGVERSION}/sstream
-gcc13-gnat/include/c++/${PKGVERSION}/stack
-gcc13-gnat/include/c++/${PKGVERSION}/stacktrace
-gcc13-gnat/include/c++/${PKGVERSION}/stdatomic.h
-gcc13-gnat/include/c++/${PKGVERSION}/stdexcept
-gcc13-gnat/include/c++/${PKGVERSION}/stdfloat
-gcc13-gnat/include/c++/${PKGVERSION}/stdlib.h
-gcc13-gnat/include/c++/${PKGVERSION}/stop_token
-gcc13-gnat/include/c++/${PKGVERSION}/streambuf
-gcc13-gnat/include/c++/${PKGVERSION}/string
-gcc13-gnat/include/c++/${PKGVERSION}/string_view
-gcc13-gnat/include/c++/${PKGVERSION}/syncstream
-gcc13-gnat/include/c++/${PKGVERSION}/system_error
-gcc13-gnat/include/c++/${PKGVERSION}/tgmath.h
-gcc13-gnat/include/c++/${PKGVERSION}/thread
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/array
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/bessel_function.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/beta_function.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/ccomplex
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cctype
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cfenv
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cfloat
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cinttypes
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/climits
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cmath
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/complex
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/complex.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cstdarg
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cstdbool
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cstdint
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cstdio
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cstdlib
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/ctgmath
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/ctime
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/ctype.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cwchar
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/cwctype
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/ell_integral.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/exp_integral.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/fenv.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/float.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/functional
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/functional_hash.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/gamma.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/hashtable.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/hashtable_policy.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/hypergeometric.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/inttypes.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/legendre_function.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/limits.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/math.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/memory
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/modified_bessel_func.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/poly_hermite.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/poly_laguerre.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/random
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/random.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/random.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/regex
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/riemann_zeta.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/shared_ptr.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/special_function_util.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/stdarg.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/stdbool.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/stdint.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/stdio.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/stdlib.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/tgmath.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/tuple
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/type_traits
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/unordered_map
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/unordered_map.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/unordered_set
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/unordered_set.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/utility
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/wchar.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr1/wctype.h
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/bool_set
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/bool_set.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/dynamic_bitset
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/dynamic_bitset.tcc
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/ratio
-gcc13-gnat/include/c++/${PKGVERSION}/tr2/type_traits
-gcc13-gnat/include/c++/${PKGVERSION}/tuple
-gcc13-gnat/include/c++/${PKGVERSION}/type_traits
-gcc13-gnat/include/c++/${PKGVERSION}/typeindex
-gcc13-gnat/include/c++/${PKGVERSION}/typeinfo
-gcc13-gnat/include/c++/${PKGVERSION}/unordered_map
-gcc13-gnat/include/c++/${PKGVERSION}/unordered_set
-gcc13-gnat/include/c++/${PKGVERSION}/utility
-gcc13-gnat/include/c++/${PKGVERSION}/valarray
-gcc13-gnat/include/c++/${PKGVERSION}/variant
-gcc13-gnat/include/c++/${PKGVERSION}/vector
-gcc13-gnat/include/c++/${PKGVERSION}/version
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/atomic_word.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/basic_file.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/c++allocator.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/c++config.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/c++io.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/c++locale.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/cpu_defines.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/ctype_base.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/ctype_inline.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/cxxabi_tweaks.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/error_constants.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/extc++.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/gthr-default.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/gthr-posix.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/gthr-single.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/gthr.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/messages_members.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/opt_random.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/os_defines.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/stdc++.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/stdtr1c++.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/bits/time_members.h
-gcc13-gnat/include/c++/${PKGVERSION}/x86_64--netbsd/ext/opt_random.h
+gcc13-gnat/include/c++/algorithm
+gcc13-gnat/include/c++/any
+gcc13-gnat/include/c++/array
+gcc13-gnat/include/c++/atomic
+gcc13-gnat/include/c++/backward/auto_ptr.h
+gcc13-gnat/include/c++/backward/backward_warning.h
+gcc13-gnat/include/c++/backward/binders.h
+gcc13-gnat/include/c++/backward/hash_fun.h
+gcc13-gnat/include/c++/backward/hash_map
+gcc13-gnat/include/c++/backward/hash_set
+gcc13-gnat/include/c++/backward/hashtable.h
+gcc13-gnat/include/c++/backward/strstream
+gcc13-gnat/include/c++/barrier
+gcc13-gnat/include/c++/bit
+gcc13-gnat/include/c++/bits/algorithmfwd.h
+gcc13-gnat/include/c++/bits/align.h
+gcc13-gnat/include/c++/bits/alloc_traits.h
+gcc13-gnat/include/c++/bits/allocated_ptr.h
+gcc13-gnat/include/c++/bits/allocator.h
+gcc13-gnat/include/c++/bits/atomic_base.h
+gcc13-gnat/include/c++/bits/atomic_futex.h
+gcc13-gnat/include/c++/bits/atomic_lockfree_defines.h
+gcc13-gnat/include/c++/bits/atomic_timed_wait.h
+gcc13-gnat/include/c++/bits/atomic_wait.h
+gcc13-gnat/include/c++/bits/basic_ios.h
+gcc13-gnat/include/c++/bits/basic_ios.tcc
+gcc13-gnat/include/c++/bits/basic_string.h
+gcc13-gnat/include/c++/bits/basic_string.tcc
+gcc13-gnat/include/c++/bits/boost_concept_check.h
+gcc13-gnat/include/c++/bits/c++0x_warning.h
+gcc13-gnat/include/c++/bits/char_traits.h
+gcc13-gnat/include/c++/bits/charconv.h
+gcc13-gnat/include/c++/bits/chrono.h
+gcc13-gnat/include/c++/bits/chrono_io.h
+gcc13-gnat/include/c++/bits/codecvt.h
+gcc13-gnat/include/c++/bits/concept_check.h
+gcc13-gnat/include/c++/bits/cow_string.h
+gcc13-gnat/include/c++/bits/cpp_type_traits.h
+gcc13-gnat/include/c++/bits/cxxabi_forced.h
+gcc13-gnat/include/c++/bits/cxxabi_init_exception.h
+gcc13-gnat/include/c++/bits/deque.tcc
+gcc13-gnat/include/c++/bits/enable_special_members.h
+gcc13-gnat/include/c++/bits/erase_if.h
+gcc13-gnat/include/c++/bits/exception.h
+gcc13-gnat/include/c++/bits/exception_defines.h
+gcc13-gnat/include/c++/bits/exception_ptr.h
+gcc13-gnat/include/c++/bits/forward_list.h
+gcc13-gnat/include/c++/bits/forward_list.tcc
+gcc13-gnat/include/c++/bits/fs_dir.h
+gcc13-gnat/include/c++/bits/fs_fwd.h
+gcc13-gnat/include/c++/bits/fs_ops.h
+gcc13-gnat/include/c++/bits/fs_path.h
+gcc13-gnat/include/c++/bits/fstream.tcc
+gcc13-gnat/include/c++/bits/functexcept.h
+gcc13-gnat/include/c++/bits/functional_hash.h
+gcc13-gnat/include/c++/bits/gslice.h
+gcc13-gnat/include/c++/bits/gslice_array.h
+gcc13-gnat/include/c++/bits/hash_bytes.h
+gcc13-gnat/include/c++/bits/hashtable.h
+gcc13-gnat/include/c++/bits/hashtable_policy.h
+gcc13-gnat/include/c++/bits/indirect_array.h
+gcc13-gnat/include/c++/bits/invoke.h
+gcc13-gnat/include/c++/bits/ios_base.h
+gcc13-gnat/include/c++/bits/istream.tcc
+gcc13-gnat/include/c++/bits/iterator_concepts.h
+gcc13-gnat/include/c++/bits/list.tcc
+gcc13-gnat/include/c++/bits/locale_classes.h
+gcc13-gnat/include/c++/bits/locale_classes.tcc
+gcc13-gnat/include/c++/bits/locale_conv.h
+gcc13-gnat/include/c++/bits/locale_facets.h
+gcc13-gnat/include/c++/bits/locale_facets.tcc
+gcc13-gnat/include/c++/bits/locale_facets_nonio.h
+gcc13-gnat/include/c++/bits/locale_facets_nonio.tcc
+gcc13-gnat/include/c++/bits/localefwd.h
+gcc13-gnat/include/c++/bits/mask_array.h
+gcc13-gnat/include/c++/bits/max_size_type.h
+gcc13-gnat/include/c++/bits/memory_resource.h
+gcc13-gnat/include/c++/bits/memoryfwd.h
+gcc13-gnat/include/c++/bits/mofunc_impl.h
+gcc13-gnat/include/c++/bits/move.h
+gcc13-gnat/include/c++/bits/move_only_function.h
+gcc13-gnat/include/c++/bits/nested_exception.h
+gcc13-gnat/include/c++/bits/new_allocator.h
+gcc13-gnat/include/c++/bits/node_handle.h
+gcc13-gnat/include/c++/bits/ostream.tcc
+gcc13-gnat/include/c++/bits/ostream_insert.h
+gcc13-gnat/include/c++/bits/parse_numbers.h
+gcc13-gnat/include/c++/bits/postypes.h
+gcc13-gnat/include/c++/bits/predefined_ops.h
+gcc13-gnat/include/c++/bits/ptr_traits.h
+gcc13-gnat/include/c++/bits/quoted_string.h
+gcc13-gnat/include/c++/bits/random.h
+gcc13-gnat/include/c++/bits/random.tcc
+gcc13-gnat/include/c++/bits/range_access.h
+gcc13-gnat/include/c++/bits/ranges_algo.h
+gcc13-gnat/include/c++/bits/ranges_algobase.h
+gcc13-gnat/include/c++/bits/ranges_base.h
+gcc13-gnat/include/c++/bits/ranges_cmp.h
+gcc13-gnat/include/c++/bits/ranges_uninitialized.h
+gcc13-gnat/include/c++/bits/ranges_util.h
+gcc13-gnat/include/c++/bits/refwrap.h
+gcc13-gnat/include/c++/bits/regex.h
+gcc13-gnat/include/c++/bits/regex.tcc
+gcc13-gnat/include/c++/bits/regex_automaton.h
+gcc13-gnat/include/c++/bits/regex_automaton.tcc
+gcc13-gnat/include/c++/bits/regex_compiler.h
+gcc13-gnat/include/c++/bits/regex_compiler.tcc
+gcc13-gnat/include/c++/bits/regex_constants.h
+gcc13-gnat/include/c++/bits/regex_error.h
+gcc13-gnat/include/c++/bits/regex_executor.h
+gcc13-gnat/include/c++/bits/regex_executor.tcc
+gcc13-gnat/include/c++/bits/regex_scanner.h
+gcc13-gnat/include/c++/bits/regex_scanner.tcc
+gcc13-gnat/include/c++/bits/requires_hosted.h
+gcc13-gnat/include/c++/bits/semaphore_base.h
+gcc13-gnat/include/c++/bits/shared_ptr.h
+gcc13-gnat/include/c++/bits/shared_ptr_atomic.h
+gcc13-gnat/include/c++/bits/shared_ptr_base.h
+gcc13-gnat/include/c++/bits/slice_array.h
+gcc13-gnat/include/c++/bits/specfun.h
+gcc13-gnat/include/c++/bits/sstream.tcc
+gcc13-gnat/include/c++/bits/std_abs.h
+gcc13-gnat/include/c++/bits/std_function.h
+gcc13-gnat/include/c++/bits/std_mutex.h
+gcc13-gnat/include/c++/bits/std_thread.h
+gcc13-gnat/include/c++/bits/stl_algo.h
+gcc13-gnat/include/c++/bits/stl_algobase.h
+gcc13-gnat/include/c++/bits/stl_bvector.h
+gcc13-gnat/include/c++/bits/stl_construct.h
+gcc13-gnat/include/c++/bits/stl_deque.h
+gcc13-gnat/include/c++/bits/stl_function.h
+gcc13-gnat/include/c++/bits/stl_heap.h
+gcc13-gnat/include/c++/bits/stl_iterator.h
+gcc13-gnat/include/c++/bits/stl_iterator_base_funcs.h
+gcc13-gnat/include/c++/bits/stl_iterator_base_types.h
+gcc13-gnat/include/c++/bits/stl_list.h
+gcc13-gnat/include/c++/bits/stl_map.h
+gcc13-gnat/include/c++/bits/stl_multimap.h
+gcc13-gnat/include/c++/bits/stl_multiset.h
+gcc13-gnat/include/c++/bits/stl_numeric.h
+gcc13-gnat/include/c++/bits/stl_pair.h
+gcc13-gnat/include/c++/bits/stl_queue.h
+gcc13-gnat/include/c++/bits/stl_raw_storage_iter.h
+gcc13-gnat/include/c++/bits/stl_relops.h
+gcc13-gnat/include/c++/bits/stl_set.h
+gcc13-gnat/include/c++/bits/stl_stack.h
+gcc13-gnat/include/c++/bits/stl_tempbuf.h
+gcc13-gnat/include/c++/bits/stl_tree.h
+gcc13-gnat/include/c++/bits/stl_uninitialized.h
+gcc13-gnat/include/c++/bits/stl_vector.h
+gcc13-gnat/include/c++/bits/stream_iterator.h
+gcc13-gnat/include/c++/bits/streambuf.tcc
+gcc13-gnat/include/c++/bits/streambuf_iterator.h
+gcc13-gnat/include/c++/bits/string_view.tcc
+gcc13-gnat/include/c++/bits/stringfwd.h
+gcc13-gnat/include/c++/bits/this_thread_sleep.h
+gcc13-gnat/include/c++/bits/uniform_int_dist.h
+gcc13-gnat/include/c++/bits/unique_lock.h
+gcc13-gnat/include/c++/bits/unique_ptr.h
+gcc13-gnat/include/c++/bits/unordered_map.h
+gcc13-gnat/include/c++/bits/unordered_set.h
+gcc13-gnat/include/c++/bits/uses_allocator.h
+gcc13-gnat/include/c++/bits/uses_allocator_args.h
+gcc13-gnat/include/c++/bits/utility.h
+gcc13-gnat/include/c++/bits/valarray_after.h
+gcc13-gnat/include/c++/bits/valarray_array.h
+gcc13-gnat/include/c++/bits/valarray_array.tcc
+gcc13-gnat/include/c++/bits/valarray_before.h
+gcc13-gnat/include/c++/bits/vector.tcc
+gcc13-gnat/include/c++/bitset
+gcc13-gnat/include/c++/cassert
+gcc13-gnat/include/c++/ccomplex
+gcc13-gnat/include/c++/cctype
+gcc13-gnat/include/c++/cerrno
+gcc13-gnat/include/c++/cfenv
+gcc13-gnat/include/c++/cfloat
+gcc13-gnat/include/c++/charconv
+gcc13-gnat/include/c++/chrono
+gcc13-gnat/include/c++/cinttypes
+gcc13-gnat/include/c++/ciso646
+gcc13-gnat/include/c++/climits
+gcc13-gnat/include/c++/clocale
+gcc13-gnat/include/c++/cmath
+gcc13-gnat/include/c++/codecvt
+gcc13-gnat/include/c++/compare
+gcc13-gnat/include/c++/complex
+gcc13-gnat/include/c++/complex.h
+gcc13-gnat/include/c++/concepts
+gcc13-gnat/include/c++/condition_variable
+gcc13-gnat/include/c++/coroutine
+gcc13-gnat/include/c++/csetjmp
+gcc13-gnat/include/c++/csignal
+gcc13-gnat/include/c++/cstdalign
+gcc13-gnat/include/c++/cstdarg
+gcc13-gnat/include/c++/cstdbool
+gcc13-gnat/include/c++/cstddef
+gcc13-gnat/include/c++/cstdint
+gcc13-gnat/include/c++/cstdio
+gcc13-gnat/include/c++/cstdlib
+gcc13-gnat/include/c++/cstring
+gcc13-gnat/include/c++/ctgmath
+gcc13-gnat/include/c++/ctime
+gcc13-gnat/include/c++/cuchar
+gcc13-gnat/include/c++/cwchar
+gcc13-gnat/include/c++/cwctype
+gcc13-gnat/include/c++/cxxabi.h
+gcc13-gnat/include/c++/debug/assertions.h
+gcc13-gnat/include/c++/debug/bitset
+gcc13-gnat/include/c++/debug/debug.h
+gcc13-gnat/include/c++/debug/deque
+gcc13-gnat/include/c++/debug/formatter.h
+gcc13-gnat/include/c++/debug/forward_list
+gcc13-gnat/include/c++/debug/functions.h
+gcc13-gnat/include/c++/debug/helper_functions.h
+gcc13-gnat/include/c++/debug/list
+gcc13-gnat/include/c++/debug/macros.h
+gcc13-gnat/include/c++/debug/map
+gcc13-gnat/include/c++/debug/map.h
+gcc13-gnat/include/c++/debug/multimap.h
+gcc13-gnat/include/c++/debug/multiset.h
+gcc13-gnat/include/c++/debug/safe_base.h
+gcc13-gnat/include/c++/debug/safe_container.h
+gcc13-gnat/include/c++/debug/safe_iterator.h
+gcc13-gnat/include/c++/debug/safe_iterator.tcc
+gcc13-gnat/include/c++/debug/safe_local_iterator.h
+gcc13-gnat/include/c++/debug/safe_local_iterator.tcc
+gcc13-gnat/include/c++/debug/safe_sequence.h
+gcc13-gnat/include/c++/debug/safe_sequence.tcc
+gcc13-gnat/include/c++/debug/safe_unordered_base.h
+gcc13-gnat/include/c++/debug/safe_unordered_container.h
+gcc13-gnat/include/c++/debug/safe_unordered_container.tcc
+gcc13-gnat/include/c++/debug/set
+gcc13-gnat/include/c++/debug/set.h
+gcc13-gnat/include/c++/debug/stl_iterator.h
+gcc13-gnat/include/c++/debug/string
+gcc13-gnat/include/c++/debug/unordered_map
+gcc13-gnat/include/c++/debug/unordered_set
+gcc13-gnat/include/c++/debug/vector
+gcc13-gnat/include/c++/decimal/decimal
+gcc13-gnat/include/c++/decimal/decimal.h
+gcc13-gnat/include/c++/deque
+gcc13-gnat/include/c++/exception
+gcc13-gnat/include/c++/execution
+gcc13-gnat/include/c++/expected
+gcc13-gnat/include/c++/experimental/algorithm
+gcc13-gnat/include/c++/experimental/any
+gcc13-gnat/include/c++/experimental/array
+gcc13-gnat/include/c++/experimental/bits/fs_dir.h
+gcc13-gnat/include/c++/experimental/bits/fs_fwd.h
+gcc13-gnat/include/c++/experimental/bits/fs_ops.h
+gcc13-gnat/include/c++/experimental/bits/fs_path.h
+gcc13-gnat/include/c++/experimental/bits/lfts_config.h
+gcc13-gnat/include/c++/experimental/bits/net.h
+gcc13-gnat/include/c++/experimental/bits/numeric_traits.h
+gcc13-gnat/include/c++/experimental/bits/shared_ptr.h
+gcc13-gnat/include/c++/experimental/bits/simd.h
+gcc13-gnat/include/c++/experimental/bits/simd_builtin.h
+gcc13-gnat/include/c++/experimental/bits/simd_converter.h
+gcc13-gnat/include/c++/experimental/bits/simd_detail.h
+gcc13-gnat/include/c++/experimental/bits/simd_fixed_size.h
+gcc13-gnat/include/c++/experimental/bits/simd_math.h
+gcc13-gnat/include/c++/experimental/bits/simd_neon.h
+gcc13-gnat/include/c++/experimental/bits/simd_ppc.h
+gcc13-gnat/include/c++/experimental/bits/simd_scalar.h
+gcc13-gnat/include/c++/experimental/bits/simd_x86.h
+gcc13-gnat/include/c++/experimental/bits/simd_x86_conversions.h
+gcc13-gnat/include/c++/experimental/bits/string_view.tcc
+gcc13-gnat/include/c++/experimental/buffer
+gcc13-gnat/include/c++/experimental/chrono
+gcc13-gnat/include/c++/experimental/contract
+gcc13-gnat/include/c++/experimental/deque
+gcc13-gnat/include/c++/experimental/executor
+gcc13-gnat/include/c++/experimental/filesystem
+gcc13-gnat/include/c++/experimental/forward_list
+gcc13-gnat/include/c++/experimental/functional
+gcc13-gnat/include/c++/experimental/internet
+gcc13-gnat/include/c++/experimental/io_context
+gcc13-gnat/include/c++/experimental/iterator
+gcc13-gnat/include/c++/experimental/list
+gcc13-gnat/include/c++/experimental/map
+gcc13-gnat/include/c++/experimental/memory
+gcc13-gnat/include/c++/experimental/memory_resource
+gcc13-gnat/include/c++/experimental/net
+gcc13-gnat/include/c++/experimental/netfwd
+gcc13-gnat/include/c++/experimental/numeric
+gcc13-gnat/include/c++/experimental/optional
+gcc13-gnat/include/c++/experimental/propagate_const
+gcc13-gnat/include/c++/experimental/random
+gcc13-gnat/include/c++/experimental/ratio
+gcc13-gnat/include/c++/experimental/regex
+gcc13-gnat/include/c++/experimental/scope
+gcc13-gnat/include/c++/experimental/set
+gcc13-gnat/include/c++/experimental/simd
+gcc13-gnat/include/c++/experimental/socket
+gcc13-gnat/include/c++/experimental/source_location
+gcc13-gnat/include/c++/experimental/string
+gcc13-gnat/include/c++/experimental/string_view
+gcc13-gnat/include/c++/experimental/synchronized_value
+gcc13-gnat/include/c++/experimental/system_error
+gcc13-gnat/include/c++/experimental/timer
+gcc13-gnat/include/c++/experimental/tuple
+gcc13-gnat/include/c++/experimental/type_traits
+gcc13-gnat/include/c++/experimental/unordered_map
+gcc13-gnat/include/c++/experimental/unordered_set
+gcc13-gnat/include/c++/experimental/utility
+gcc13-gnat/include/c++/experimental/vector
+gcc13-gnat/include/c++/ext/algorithm
+gcc13-gnat/include/c++/ext/aligned_buffer.h
+gcc13-gnat/include/c++/ext/alloc_traits.h
+gcc13-gnat/include/c++/ext/atomicity.h
+gcc13-gnat/include/c++/ext/bitmap_allocator.h
+gcc13-gnat/include/c++/ext/cast.h
+gcc13-gnat/include/c++/ext/cmath
+gcc13-gnat/include/c++/ext/codecvt_specializations.h
+gcc13-gnat/include/c++/ext/concurrence.h
+gcc13-gnat/include/c++/ext/debug_allocator.h
+gcc13-gnat/include/c++/ext/enc_filebuf.h
+gcc13-gnat/include/c++/ext/extptr_allocator.h
+gcc13-gnat/include/c++/ext/functional
+gcc13-gnat/include/c++/ext/hash_map
+gcc13-gnat/include/c++/ext/hash_set
+gcc13-gnat/include/c++/ext/iterator
+gcc13-gnat/include/c++/ext/malloc_allocator.h
+gcc13-gnat/include/c++/ext/memory
+gcc13-gnat/include/c++/ext/mt_allocator.h
+gcc13-gnat/include/c++/ext/new_allocator.h
+gcc13-gnat/include/c++/ext/numeric
+gcc13-gnat/include/c++/ext/numeric_traits.h
+gcc13-gnat/include/c++/ext/pb_ds/assoc_container.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/branch_policy/branch_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/branch_policy/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/cond_dealtor.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/container_base_dispatch.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/debug_map_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/node.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/node.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/splay_tree_/traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/standard_policies.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/tree_trace_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/type_utils.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/types_traits.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+gcc13-gnat/include/c++/ext/pb_ds/exception.hpp
+gcc13-gnat/include/c++/ext/pb_ds/hash_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/list_update_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/priority_queue.hpp
+gcc13-gnat/include/c++/ext/pb_ds/tag_and_trait.hpp
+gcc13-gnat/include/c++/ext/pb_ds/tree_policy.hpp
+gcc13-gnat/include/c++/ext/pb_ds/trie_policy.hpp
+gcc13-gnat/include/c++/ext/pod_char_traits.h
+gcc13-gnat/include/c++/ext/pointer.h
+gcc13-gnat/include/c++/ext/pool_allocator.h
+gcc13-gnat/include/c++/ext/random
+gcc13-gnat/include/c++/ext/random.tcc
+gcc13-gnat/include/c++/ext/rb_tree
+gcc13-gnat/include/c++/ext/rc_string_base.h
+gcc13-gnat/include/c++/ext/rope
+gcc13-gnat/include/c++/ext/ropeimpl.h
+gcc13-gnat/include/c++/ext/slist
+gcc13-gnat/include/c++/ext/sso_string_base.h
+gcc13-gnat/include/c++/ext/stdio_filebuf.h
+gcc13-gnat/include/c++/ext/stdio_sync_filebuf.h
+gcc13-gnat/include/c++/ext/string_conversions.h
+gcc13-gnat/include/c++/ext/throw_allocator.h
+gcc13-gnat/include/c++/ext/type_traits.h
+gcc13-gnat/include/c++/ext/typelist.h
+gcc13-gnat/include/c++/ext/vstring.h
+gcc13-gnat/include/c++/ext/vstring.tcc
+gcc13-gnat/include/c++/ext/vstring_fwd.h
+gcc13-gnat/include/c++/ext/vstring_util.h
+gcc13-gnat/include/c++/fenv.h
+gcc13-gnat/include/c++/filesystem
+gcc13-gnat/include/c++/format
+gcc13-gnat/include/c++/forward_list
+gcc13-gnat/include/c++/fstream
+gcc13-gnat/include/c++/functional
+gcc13-gnat/include/c++/future
+gcc13-gnat/include/c++/initializer_list
+gcc13-gnat/include/c++/iomanip
+gcc13-gnat/include/c++/ios
+gcc13-gnat/include/c++/iosfwd
+gcc13-gnat/include/c++/iostream
+gcc13-gnat/include/c++/istream
+gcc13-gnat/include/c++/iterator
+gcc13-gnat/include/c++/latch
+gcc13-gnat/include/c++/limits
+gcc13-gnat/include/c++/list
+gcc13-gnat/include/c++/locale
+gcc13-gnat/include/c++/map
+gcc13-gnat/include/c++/math.h
+gcc13-gnat/include/c++/memory
+gcc13-gnat/include/c++/memory_resource
+gcc13-gnat/include/c++/mutex
+gcc13-gnat/include/c++/new
+gcc13-gnat/include/c++/numbers
+gcc13-gnat/include/c++/numeric
+gcc13-gnat/include/c++/optional
+gcc13-gnat/include/c++/ostream
+gcc13-gnat/include/c++/parallel/algo.h
+gcc13-gnat/include/c++/parallel/algobase.h
+gcc13-gnat/include/c++/parallel/algorithm
+gcc13-gnat/include/c++/parallel/algorithmfwd.h
+gcc13-gnat/include/c++/parallel/balanced_quicksort.h
+gcc13-gnat/include/c++/parallel/base.h
+gcc13-gnat/include/c++/parallel/basic_iterator.h
+gcc13-gnat/include/c++/parallel/checkers.h
+gcc13-gnat/include/c++/parallel/compatibility.h
+gcc13-gnat/include/c++/parallel/compiletime_settings.h
+gcc13-gnat/include/c++/parallel/equally_split.h
+gcc13-gnat/include/c++/parallel/features.h
+gcc13-gnat/include/c++/parallel/find.h
+gcc13-gnat/include/c++/parallel/find_selectors.h
+gcc13-gnat/include/c++/parallel/for_each.h
+gcc13-gnat/include/c++/parallel/for_each_selectors.h
+gcc13-gnat/include/c++/parallel/iterator.h
+gcc13-gnat/include/c++/parallel/list_partition.h
+gcc13-gnat/include/c++/parallel/losertree.h
+gcc13-gnat/include/c++/parallel/merge.h
+gcc13-gnat/include/c++/parallel/multiseq_selection.h
+gcc13-gnat/include/c++/parallel/multiway_merge.h
+gcc13-gnat/include/c++/parallel/multiway_mergesort.h
+gcc13-gnat/include/c++/parallel/numeric
+gcc13-gnat/include/c++/parallel/numericfwd.h
+gcc13-gnat/include/c++/parallel/omp_loop.h
+gcc13-gnat/include/c++/parallel/omp_loop_static.h
+gcc13-gnat/include/c++/parallel/par_loop.h
+gcc13-gnat/include/c++/parallel/parallel.h
+gcc13-gnat/include/c++/parallel/partial_sum.h
+gcc13-gnat/include/c++/parallel/partition.h
+gcc13-gnat/include/c++/parallel/queue.h
+gcc13-gnat/include/c++/parallel/quicksort.h
+gcc13-gnat/include/c++/parallel/random_number.h
+gcc13-gnat/include/c++/parallel/random_shuffle.h
+gcc13-gnat/include/c++/parallel/search.h
+gcc13-gnat/include/c++/parallel/set_operations.h
+gcc13-gnat/include/c++/parallel/settings.h
+gcc13-gnat/include/c++/parallel/sort.h
+gcc13-gnat/include/c++/parallel/tags.h
+gcc13-gnat/include/c++/parallel/types.h
+gcc13-gnat/include/c++/parallel/unique_copy.h
+gcc13-gnat/include/c++/parallel/workstealing.h
+gcc13-gnat/include/c++/pstl/algorithm_fwd.h
+gcc13-gnat/include/c++/pstl/algorithm_impl.h
+gcc13-gnat/include/c++/pstl/execution_defs.h
+gcc13-gnat/include/c++/pstl/execution_impl.h
+gcc13-gnat/include/c++/pstl/glue_algorithm_defs.h
+gcc13-gnat/include/c++/pstl/glue_algorithm_impl.h
+gcc13-gnat/include/c++/pstl/glue_execution_defs.h
+gcc13-gnat/include/c++/pstl/glue_memory_defs.h
+gcc13-gnat/include/c++/pstl/glue_memory_impl.h
+gcc13-gnat/include/c++/pstl/glue_numeric_defs.h
+gcc13-gnat/include/c++/pstl/glue_numeric_impl.h
+gcc13-gnat/include/c++/pstl/memory_impl.h
+gcc13-gnat/include/c++/pstl/numeric_fwd.h
+gcc13-gnat/include/c++/pstl/numeric_impl.h
+gcc13-gnat/include/c++/pstl/parallel_backend.h
+gcc13-gnat/include/c++/pstl/parallel_backend_serial.h
+gcc13-gnat/include/c++/pstl/parallel_backend_tbb.h
+gcc13-gnat/include/c++/pstl/parallel_backend_utils.h
+gcc13-gnat/include/c++/pstl/parallel_impl.h
+gcc13-gnat/include/c++/pstl/pstl_config.h
+gcc13-gnat/include/c++/pstl/unseq_backend_simd.h
+gcc13-gnat/include/c++/pstl/utils.h
+gcc13-gnat/include/c++/queue
+gcc13-gnat/include/c++/random
+gcc13-gnat/include/c++/ranges
+gcc13-gnat/include/c++/ratio
+gcc13-gnat/include/c++/regex
+gcc13-gnat/include/c++/scoped_allocator
+gcc13-gnat/include/c++/semaphore
+gcc13-gnat/include/c++/set
+gcc13-gnat/include/c++/shared_mutex
+gcc13-gnat/include/c++/source_location
+gcc13-gnat/include/c++/span
+gcc13-gnat/include/c++/spanstream
+gcc13-gnat/include/c++/sstream
+gcc13-gnat/include/c++/stack
+gcc13-gnat/include/c++/stacktrace
+gcc13-gnat/include/c++/stdatomic.h
+gcc13-gnat/include/c++/stdexcept
+gcc13-gnat/include/c++/stdfloat
+gcc13-gnat/include/c++/stdlib.h
+gcc13-gnat/include/c++/stop_token
+gcc13-gnat/include/c++/streambuf
+gcc13-gnat/include/c++/string
+gcc13-gnat/include/c++/string_view
+gcc13-gnat/include/c++/syncstream
+gcc13-gnat/include/c++/system_error
+gcc13-gnat/include/c++/tgmath.h
+gcc13-gnat/include/c++/thread
+gcc13-gnat/include/c++/tr1/array
+gcc13-gnat/include/c++/tr1/bessel_function.tcc
+gcc13-gnat/include/c++/tr1/beta_function.tcc
+gcc13-gnat/include/c++/tr1/ccomplex
+gcc13-gnat/include/c++/tr1/cctype
+gcc13-gnat/include/c++/tr1/cfenv
+gcc13-gnat/include/c++/tr1/cfloat
+gcc13-gnat/include/c++/tr1/cinttypes
+gcc13-gnat/include/c++/tr1/climits
+gcc13-gnat/include/c++/tr1/cmath
+gcc13-gnat/include/c++/tr1/complex
+gcc13-gnat/include/c++/tr1/complex.h
+gcc13-gnat/include/c++/tr1/cstdarg
+gcc13-gnat/include/c++/tr1/cstdbool
+gcc13-gnat/include/c++/tr1/cstdint
+gcc13-gnat/include/c++/tr1/cstdio
+gcc13-gnat/include/c++/tr1/cstdlib
+gcc13-gnat/include/c++/tr1/ctgmath
+gcc13-gnat/include/c++/tr1/ctime
+gcc13-gnat/include/c++/tr1/ctype.h
+gcc13-gnat/include/c++/tr1/cwchar
+gcc13-gnat/include/c++/tr1/cwctype
+gcc13-gnat/include/c++/tr1/ell_integral.tcc
+gcc13-gnat/include/c++/tr1/exp_integral.tcc
+gcc13-gnat/include/c++/tr1/fenv.h
+gcc13-gnat/include/c++/tr1/float.h
+gcc13-gnat/include/c++/tr1/functional
+gcc13-gnat/include/c++/tr1/functional_hash.h
+gcc13-gnat/include/c++/tr1/gamma.tcc
+gcc13-gnat/include/c++/tr1/hashtable.h
+gcc13-gnat/include/c++/tr1/hashtable_policy.h
+gcc13-gnat/include/c++/tr1/hypergeometric.tcc
+gcc13-gnat/include/c++/tr1/inttypes.h
+gcc13-gnat/include/c++/tr1/legendre_function.tcc
+gcc13-gnat/include/c++/tr1/limits.h
+gcc13-gnat/include/c++/tr1/math.h
+gcc13-gnat/include/c++/tr1/memory
+gcc13-gnat/include/c++/tr1/modified_bessel_func.tcc
+gcc13-gnat/include/c++/tr1/poly_hermite.tcc
+gcc13-gnat/include/c++/tr1/poly_laguerre.tcc
+gcc13-gnat/include/c++/tr1/random
+gcc13-gnat/include/c++/tr1/random.h
+gcc13-gnat/include/c++/tr1/random.tcc
+gcc13-gnat/include/c++/tr1/regex
+gcc13-gnat/include/c++/tr1/riemann_zeta.tcc
+gcc13-gnat/include/c++/tr1/shared_ptr.h
+gcc13-gnat/include/c++/tr1/special_function_util.h
+gcc13-gnat/include/c++/tr1/stdarg.h
+gcc13-gnat/include/c++/tr1/stdbool.h
+gcc13-gnat/include/c++/tr1/stdint.h
+gcc13-gnat/include/c++/tr1/stdio.h
+gcc13-gnat/include/c++/tr1/stdlib.h
+gcc13-gnat/include/c++/tr1/tgmath.h
+gcc13-gnat/include/c++/tr1/tuple
+gcc13-gnat/include/c++/tr1/type_traits
+gcc13-gnat/include/c++/tr1/unordered_map
+gcc13-gnat/include/c++/tr1/unordered_map.h
+gcc13-gnat/include/c++/tr1/unordered_set
+gcc13-gnat/include/c++/tr1/unordered_set.h
+gcc13-gnat/include/c++/tr1/utility
+gcc13-gnat/include/c++/tr1/wchar.h
+gcc13-gnat/include/c++/tr1/wctype.h
+gcc13-gnat/include/c++/tr2/bool_set
+gcc13-gnat/include/c++/tr2/bool_set.tcc
+gcc13-gnat/include/c++/tr2/dynamic_bitset
+gcc13-gnat/include/c++/tr2/dynamic_bitset.tcc
+gcc13-gnat/include/c++/tr2/ratio
+gcc13-gnat/include/c++/tr2/type_traits
+gcc13-gnat/include/c++/tuple
+gcc13-gnat/include/c++/type_traits
+gcc13-gnat/include/c++/typeindex
+gcc13-gnat/include/c++/typeinfo
+gcc13-gnat/include/c++/unordered_map
+gcc13-gnat/include/c++/unordered_set
+gcc13-gnat/include/c++/utility
+gcc13-gnat/include/c++/valarray
+gcc13-gnat/include/c++/variant
+gcc13-gnat/include/c++/vector
+gcc13-gnat/include/c++/version
+gcc13-gnat/include/c++/x86_64--netbsd/bits/atomic_word.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/basic_file.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/c++allocator.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/c++config.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/c++io.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/c++locale.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/cpu_defines.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/ctype_base.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/ctype_inline.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/cxxabi_tweaks.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/error_constants.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/extc++.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/gthr-default.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/gthr-posix.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/gthr-single.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/gthr.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/messages_members.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/opt_random.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/os_defines.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/stdc++.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/stdtr1c++.h
+gcc13-gnat/include/c++/x86_64--netbsd/bits/time_members.h
+gcc13-gnat/include/c++/x86_64--netbsd/ext/opt_random.h
 gcc13-gnat/info/cpp.info
 gcc13-gnat/info/cppinternals.info
 gcc13-gnat/info/gcc.info
diff --git a/gcc13-gnat/buildlink3.mk b/gcc13-gnat/buildlink3.mk
index 179ab0eb55..5a6c4fc7c6 100644
--- a/gcc13-gnat/buildlink3.mk
+++ b/gcc13-gnat/buildlink3.mk
@@ -10,7 +10,9 @@ BUILDLINK_ABI_DEPENDS.gcc13-gnat+=	gcc13-gnat>=13.2
 BUILDLINK_PKGSRCDIR.gcc13-gnat=		../../wip/gcc13-gnat
 BUILDLINK_DEPMETHOD.gcc13-gnat?=	build
 
-ADALIB_PREFIX=	gcc13-gnat/lib/gcc/${MACHINE_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/${GCC13_DIST_VERSION}
+GNU_TARGET_MACHINE?=	${MACHINE_GNU_PLATFORM}
+
+ADALIB_PREFIX=	gcc13-gnat/lib/gcc/${GNU_TARGET_MACHINE}/13.3.0
 
 BUILDLINK_FILES.gcc13-gnat+=	${ADALIB_PREFIX}/adalib/*.ali
 
diff --git a/gcc13-gnat/distinfo b/gcc13-gnat/distinfo
index ddfb90ef4b..9dccc5c2aa 100644
--- a/gcc13-gnat/distinfo
+++ b/gcc13-gnat/distinfo
@@ -4,7 +4,6 @@ BLAKE2s (gcc-13.3.0.tar.xz) = d204b8987b4780b569f28226cbfff34ae27124e529857c36ff
 SHA512 (gcc-13.3.0.tar.xz) = ed5f2f4c6ed2c796fcf2c93707159e9dbd3ddb1ba063d549804dd68cdabbb6d550985ae1c8465ae9a336cfe29274a6eb0f42e21924360574ebd8e5d5c7c9a801
 Size (gcc-13.3.0.tar.xz) = 87909952 bytes
 SHA1 (patch-fixincludes_inclhack.def) = 9ed633ac175b2180f79e10c96dccd39999bfa348
-SHA1 (patch-gcc_Makefile.in) = 38608a96d5c7ad1bbd1306ebbbd225801cd5fc85
 SHA1 (patch-gcc_ada_Makefile.rtl) = ab068e2580ac1c93c8f27e13aa7331c486080ed0
 SHA1 (patch-gcc_ada_adaint.c) = 67cd2ba303924daaaa2896a73f299f257ebd2101
 SHA1 (patch-gcc_ada_adaint.h) = 0956155bac85df664a8761fd03aec3e12fff89a2
diff --git a/gcc13-gnat/options.mk b/gcc13-gnat/options.mk
index a0f8d33a6f..58a25c4559 100644
--- a/gcc13-gnat/options.mk
+++ b/gcc13-gnat/options.mk
@@ -1,7 +1,7 @@
 # $NetBSD: options.mk,v 1.1 2024/03/08 12:02:33 wiz Exp $
 
 PKG_OPTIONS_VAR=	PKG_OPTIONS.gcc13-gnat
-PKG_SUPPORTED_OPTIONS=	nls gcc-inplace-math gcc-inplace-isl gcc-graphite
+PKG_SUPPORTED_OPTIONS=	nls gcc-inplace-math gcc-graphite
 PKG_SUGGESTED_OPTIONS=	gcc-graphite
 
 .include "../../mk/bsd.fast.prefs.mk"
@@ -13,14 +13,10 @@ PKG_SUGGESTED_OPTIONS+=	nls
 .elif ${OPSYS} == "DragonFly"
 PKG_SUGGESTED_OPTIONS+=	nls
 .elif ${OPSYS} == "SunOS"
-PKG_SUGGESTED_OPTIONS+=	gcc-inplace-math gcc-inplace-isl
+PKG_SUGGESTED_OPTIONS+=	gcc-inplace-math
 .else
 .endif
 
-.if !empty(PKG_OPTIONS:Mgcc-inplace-isl) && empty(PKG_OPTIONS:Mgcc-graphite)
-PKG_SUGGESTED_OPTIONS+=	gcc-graphite
-.endif
-
 ###
 ### Determine if multilib is avalible.
 ###
@@ -90,7 +86,7 @@ LIBS.SunOS+=-lgmp
 ###
 .if !empty(PKG_OPTIONS:Mgcc-graphite)
 BUILDLINK_API_DEPENDS.isl+=isl>=0.24
-.  if !empty(PKG_OPTIONS:Mgcc-inplace-isl)
+.  if !empty(PKG_OPTIONS:Mgcc-inplace-math)
 .    include "../../math/isl/inplace.mk"
 .  else
 .    include "../../math/isl/buildlink3.mk"
diff --git a/gcc13-gnat/patches/patch-gcc_Makefile.in b/gcc13-gnat/patches/patch-gcc_Makefile.in
deleted file mode 100644
index 0790ace875..0000000000
--- a/gcc13-gnat/patches/patch-gcc_Makefile.in
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-gcc_Makefile.in,v 1.1 2024/03/08 12:02:33 wiz Exp $
-
-Add gcc libdir to a programs rpath so that _this gcc's_ support libraries
-are found.
-
---- gcc/Makefile.in.orig	2024-05-21 10:47:37.000000000 +0300
-+++ gcc/Makefile.in
-@@ -2326,6 +2326,7 @@
- # Language-independent files.
- 
- DRIVER_DEFINES = \
-+  -DLINK_LIBGCC_SPEC="\"$(LINKER_RPATH_FLAG) $(prefix)/lib/%M $(LINKER_RPATH_FLAG) $(libdir)/%M\"" \
-   -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
-   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
-   -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \


Home | Main Index | Thread Index | Old Index