aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Leres <leres@FreeBSD.org>2024-09-23 19:44:29 +0000
committerCraig Leres <leres@FreeBSD.org>2024-09-23 19:44:29 +0000
commit771e57d671d9c859005e32f5eba6abc75bee5dd5 (patch)
tree79e80ef5e10546841443e24702ee8177109e86b3
parent541eb5dc7e51ea4ee007d94681d876cc4c31aa43 (diff)
devel/xtensa-esp32-elf: Update to 13.2.0_20240530, rename to xtensa-esp-elf
This updates the toolchain to gcc 13.2.0 as used by versions 5.2.2, 5.3.0, and 5.3.1 of the Espressif esp-idf. The crosstool.config for xtensa-esp32-esp is invalid for this version (and is removed in esp-14.2.0_20240906 via 6269489 -- "samples: remove obsolete xtensa-esp32XX-elf targets") so switch to xtensa-esp-esp and rename port to match. This update removes the final dependency on gcc10. PR: 278061 278062
-rw-r--r--MOVED1
-rw-r--r--devel/xtensa-esp-elf/Makefile116
-rw-r--r--devel/xtensa-esp-elf/distinfo21
-rw-r--r--devel/xtensa-esp-elf/files/crosstool.config57
-rw-r--r--devel/xtensa-esp-elf/pkg-descr4
-rw-r--r--devel/xtensa-esp-elf/pkg-plist2111
-rw-r--r--devel/xtensa-esp32-elf/Makefile108
-rw-r--r--devel/xtensa-esp32-elf/distinfo23
-rw-r--r--devel/xtensa-esp32-elf/files/0001-gdb-7.12.1.patch46
-rw-r--r--devel/xtensa-esp32-elf/pkg-descr4
-rw-r--r--devel/xtensa-esp32-elf/pkg-plist1555
11 files changed, 2310 insertions, 1736 deletions
diff --git a/MOVED b/MOVED
index cdb29baf8701..0e28030c875a 100644
--- a/MOVED
+++ b/MOVED
@@ -3484,3 +3484,4 @@ databases/ldb20||2024-09-22|Has expired: Outdated and not necessary for any supp
databases/ldb21||2024-09-22|Has expired: Outdated and not necessary for any supported version of Samba
graphics/gstreamer1-plugins-qt|x11-toolkits/gstreamer1-plugins-qt5|2024-09-22|Rename with versioned suffix and move to a more fitting category with the addition of its Qt6 counterpart
devel/rubygem-sidekiq71|devel/rubygem-sidekiq72|2024-09-23|Has expired: use devel/rubygem-sidekiq72 instead
+devel/xtensa-esp32-elf|devel/xtensa-esp-elf|2024-09-23|Upstream was renamed
diff --git a/devel/xtensa-esp-elf/Makefile b/devel/xtensa-esp-elf/Makefile
new file mode 100644
index 000000000000..13a912009845
--- /dev/null
+++ b/devel/xtensa-esp-elf/Makefile
@@ -0,0 +1,116 @@
+PORTNAME= xtensa-esp-elf
+DISTVERSION= 13.2.0_20240530
+CATEGORIES= devel
+MASTER_SITES= https://github.com/espressif/crosstool-NG/releases/download/esp-${DISTVERSION}/:source1 \
+ GNU/gmp:source2 \
+ https://libisl.sourceforge.io/:source3 \
+ GNU/mpc:source4 \
+ GNU/mpfr:source5 \
+ https://github.com/madler/zlib/releases/download/v1.2.13/:source6 \
+ https://github.com/facebook/zstd/releases/download/v1.5.5/:source7
+DISTNAME= crosstool-NG-esp-${DISTVERSION}-src
+EXTRACT_SUFX= .tar.xz
+DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:source1 \
+ gmp-6.2.1.tar.bz2:source2 \
+ isl-0.26.tar.gz:source3 \
+ mpc-1.2.1.tar.gz:source4 \
+ mpfr-4.2.1.zip:source5 \
+ zlib-1.2.13.tar.xz:source6 \
+ zstd-1.5.5.tar.gz:source7
+EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
+
+MAINTAINER= leres@FreeBSD.org
+COMMENT= Espressif ESP toolchain
+WWW= https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/
+
+LICENSE= GPLv2 LGPL21
+LICENSE_COMB= multi
+
+BUILD_DEPENDS= bash:shells/bash \
+ gawk:lang/gawk \
+ gpatch:devel/patch \
+ ${LOCALBASE}/bin/grep:textproc/gnugrep \
+ ${LOCALBASE}/include/libintl.h:devel/gettext-runtime \
+ gsed:textproc/gsed \
+ help2man:misc/help2man \
+ makeinfo:print/texinfo
+
+USES= autoreconf:build bison gmake libtool python
+USE_GCC= yes
+USE_GITHUB= nodefault
+
+NO_MTREE= yes
+GH_ACCOUNT= espressif
+GH_PROJECT= binutils-gdb:github1 \
+ gcc:github2 \
+ newlib-esp32:github3
+GH_TAGNAME= esp-2.41.0_${ESPDATE}:github1 \
+ esp-${GCCVER}_${ESPDATE}:github2 \
+ esp-4.3.0_${ESPDATE}:github3
+BINARY_ALIAS= g++=${CXX} gcc=${CC} python=${PYTHON_VERSION}
+BUILD_ENV= CT_ALLOW_BUILD_AS_ROOT_SURE=1 \
+ CT_FORBID_DOWNLOAD=y \
+ GREP=${LOCALBASE}/bin/grep \
+ LD_RUN_PATH=${PREFIX}/lib/${CC} \
+ LDFLAGS=-I${PREFIX}/lib \
+ ${MAKE_ENV:MPATH=*}
+
+ESPVER= ${DISTNAME:tl:S/-src$//:S/-esp-/-/}
+ESPDATE= 20240305
+GCCVER= 13.2.0
+PLIST_SUB= PKGBASE=$(PKGBASE) GCCVER=$(GCCVER)
+TARBALLS= ${BUILD_WRKSRC}/.build/tarballs
+
+post-extract:
+ ${MKDIR} ${TARBALLS}
+.for F in $(DISTFILES:N$(EXTRACT_ONLY)\:source[0-9]*)
+ ${LN} -s ${DISTDIR}/${F:C/:source[0-9]+$//} ${TARBALLS}
+.endfor
+ ${ECHO} CT_LOG_PROGRESS_BAR=n >> \
+ ${BUILD_WRKSRC}/samples/${PORTNAME}/crosstool.config
+ # Make tar names match extract directories
+ ${LN} -s \
+ ${DISTDIR}/espressif-binutils-gdb-esp-2.41.0_${ESPDATE}_GH0.tar.gz \
+ ${TARBALLS}/binutils-gdb-esp-2.41.0_${ESPDATE}.tar.gz
+ ${LN} -s ${DISTDIR}/espressif-gcc-esp-${GCCVER}_${ESPDATE}_GH0.tar.gz \
+ ${TARBALLS}/gcc-esp-${GCCVER}_${ESPDATE}.tar.gz
+ ${LN} -s \
+ ${DISTDIR}/espressif-newlib-esp32-esp-4.3.0_${ESPDATE}_GH0.tar.gz \
+ ${TARBALLS}/newlib-esp32-esp-4.3.0_${ESPDATE}.tar.gz
+
+ # Use a new crosstool.config that lets us download a
+ # branch/tag tarball instead of doing "git clone"
+ ${MV} ${WRKSRC}/samples/xtensa-esp-elf/crosstool.config \
+ ${WRKSRC}/samples/xtensa-esp-elf/crosstool.config-
+ ${CP} ${FILESDIR}/crosstool.config ${WRKSRC}/samples/xtensa-esp-elf
+
+do-configure:
+ cd ${BUILD_WRKSRC} && ./bootstrap
+ ${PRINTF} "#!/bin/sh\necho '${ESPVER}'\n" > \
+ ${BUILD_WRKSRC}/version.sh
+ ${CHMOD} -w+x ${BUILD_WRKSRC}/version.sh
+ cd ${BUILD_WRKSRC} && \
+ ${SETENV} ${BUILD_ENV} LIBS=-lintl \
+ ./configure --prefix=${WRKDIR}/ct-ng --exec-prefix=${WRKDIR}/ct-ng
+ cd ${BUILD_WRKSRC} && \
+ ${SETENV} -uMAKELEVEL -uMAKEFLAGS -u.MAKE.LEVEL.ENV ${BUILD_ENV} \
+ ${MAKE_CMD} install && ${SETENV} ${BUILD_ENV} ./ct-ng xtensa-esp-elf
+
+do-build:
+ cd ${BUILD_WRKSRC} && ${SETENV} ${BUILD_ENV} ./ct-ng build
+ cd ${BUILD_WRKSRC}/builds/${PORTNAME} && \
+ ${CHMOD} +w . lib && \
+ ${RM} build.log.bz2 lib/charset.alias && \
+ ${CHMOD} -w . lib
+
+do-install:
+ cd ${BUILD_WRKSRC}/builds/${PORTNAME} && \
+ ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/${PKGBASE}
+ ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE} -type f | \
+ ${XARGS} ${CHMOD} -wx
+ ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE}/bin \
+ ${STAGEDIR}${PREFIX}/${PKGBASE}/libexec/gcc/${PORTNAME}/${GCCVER} \
+ ${STAGEDIR}${PREFIX}/${PKGBASE}/${PORTNAME}/bin -type f | \
+ ${XARGS} ${CHMOD} +x
+
+.include <bsd.port.mk>
diff --git a/devel/xtensa-esp-elf/distinfo b/devel/xtensa-esp-elf/distinfo
new file mode 100644
index 000000000000..572b182eaee4
--- /dev/null
+++ b/devel/xtensa-esp-elf/distinfo
@@ -0,0 +1,21 @@
+TIMESTAMP = 1727046054
+SHA256 (crosstool-NG-esp-13.2.0_20240530-src.tar.xz) = 6e439b150bfd7cc3446b39c285e1eeebfb71c6e6a0132f5cf1082e5552e5b9d1
+SIZE (crosstool-NG-esp-13.2.0_20240530-src.tar.xz) = 1123972
+SHA256 (gmp-6.2.1.tar.bz2) = eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c
+SIZE (gmp-6.2.1.tar.bz2) = 2493916
+SHA256 (isl-0.26.tar.gz) = b10473024cbf17d7db85323121eff0e50f03de14342a03738b4d384b587ce212
+SIZE (isl-0.26.tar.gz) = 2902641
+SHA256 (mpc-1.2.1.tar.gz) = 17503d2c395dfcf106b622dc142683c1199431d095367c6aacba6eec30340459
+SIZE (mpc-1.2.1.tar.gz) = 838731
+SHA256 (mpfr-4.2.1.zip) = 0c2e85bef65070897bd4fd9647e4dcfc850619b6bacefe769ce5592f21f42f0b
+SIZE (mpfr-4.2.1.zip) = 2722866
+SHA256 (zlib-1.2.13.tar.xz) = d14c38e313afc35a9a8760dadf26042f51ea0f5d154b0630a31da0540107fb98
+SIZE (zlib-1.2.13.tar.xz) = 1296496
+SHA256 (zstd-1.5.5.tar.gz) = 9c4396cc829cfae319a6e2615202e82aad41372073482fce286fac78646d3ee4
+SIZE (zstd-1.5.5.tar.gz) = 2368543
+SHA256 (espressif-binutils-gdb-esp-2.41.0_20240305_GH0.tar.gz) = 75cc712f35b0a2f95e53d9bf54629bd66759f7225dc222392f210ca4ac5facb6
+SIZE (espressif-binutils-gdb-esp-2.41.0_20240305_GH0.tar.gz) = 65669754
+SHA256 (espressif-gcc-esp-13.2.0_20240305_GH0.tar.gz) = 2dfa982c84d22e90974eff546311d2b97bc92d8da50eccd625b1e44a9766fc1b
+SIZE (espressif-gcc-esp-13.2.0_20240305_GH0.tar.gz) = 137893692
+SHA256 (espressif-newlib-esp32-esp-4.3.0_20240305_GH0.tar.gz) = d1ed55a0e7d56e33100ddb4bf78ca5e9b14757d2b0815e65594fd401cc2b091d
+SIZE (espressif-newlib-esp32-esp-4.3.0_20240305_GH0.tar.gz) = 12030406
diff --git a/devel/xtensa-esp-elf/files/crosstool.config b/devel/xtensa-esp-elf/files/crosstool.config
new file mode 100644
index 000000000000..bf5ec475bffd
--- /dev/null
+++ b/devel/xtensa-esp-elf/files/crosstool.config
@@ -0,0 +1,57 @@
+CT_CONFIG_VERSION="4"
+CT_EXPERIMENTAL=y
+CT_PREFIX_DIR="${CT_TOP_DIR}/builds/${CT_TARGET}"
+
+CT_ARCH_XTENSA=y
+CT_ARCH="xtensa"
+CT_TARGET_CFLAGS="-mlongcalls"
+CT_MULTILIB=y
+CT_TARGET_VENDOR="esp"
+CT_XTENSA_DYNCONFIG=y
+CT_XTENSA_DYNCONFIG_LOCATION="${CT_TOP_DIR}/xtensa-dynconfig"
+CT_XTENSA_DYNCONFIG_CONF_DIR="${CT_TOP_DIR}/overlays"
+
+CT_CC_GCC_ENABLE_CXX_FLAGS="-ffunction-sections"
+CT_CC_GCC_CORE_EXTRA_CONFIG_ARRAY="--enable-threads=posix"
+CT_CC_GCC_EXTRA_CONFIG_ARRAY="--disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes"
+# CT_CC_CXA_ATEXIT is not set
+# CT_CC_GCC_STATIC_LIBSTDCXX is not set
+# CT_CC_GCC_LDBL_128 is not set
+CT_CC_LANG_CXX=y
+
+# NOTE:lways want this
+CT_LOG_PROGRESS_BAR=n
+
+crosstool-ng doesn't apply bundled patches in the case of using git repo
+
+CT_NEWLIB_V_4_3=y
+CT_NEWLIB_VERSION="4.3.0"
+CT_NEWLIB_SRC_CUSTOM=y
+CT_NEWLIB_CUSTOM_LOCATION=".build/tarballs/newlib-esp32-esp-4.3.0_20240305.tar.gz"
+CT_LIBC_NEWLIB_TARGET_CFLAGS=""
+CT_LIBC_NEWLIB_EXTRA_CONFIG_ARRAY="--enable-newlib-iconv --enable-newlib-reent-binary-compat"
+CT_LIBC_NEWLIB_NANO_MALLOC=y
+CT_LIBC_NEWLIB_RETARGETABLE_LOCKING=y
+CT_LIBC_NEWLIB_GLOBAL_ATEXIT=y
+CT_LIBC_NEWLIB_DISABLE_SUPPLIED_SYSCALLS=y
+CT_LIBC_NEWLIB_REENT_SMALL=y
+CT_LIBC_NEWLIB_IO_C99FMT=y
+CT_LIBC_NEWLIB_IO_LL=y
+CT_LIBC_NEWLIB_IO_FLOAT=y
+CT_LIBC_NEWLIB_IO_POS_ARGS=y
+CT_LIBC_NEWLIB_WIDE_ORIENT=n
+
+CT_LIBC_NEWLIB_AUX_BUILD=y
+CT_LIBC_NEWLIB_AUX_BUILD_NAME="nano"
+CT_LIBC_NEWLIB_AUX_BUILD_EXTRA_CONFIG_ARRAY="--with-newlib --enable-multilib --disable-newlib-io-c99-formats --disable-newlib-supplied-syscalls --enable-newlib-nano-formatted-io --enable-newlib-reent-small --enable-target-optspace --enable-newlib-nano-malloc --enable-newlib-retargetable-locking --disable-newlib_wide_orient --enable-newlib-iconv --enable-newlib-reent-binary-compat"
+CT_LIBC_NEWLIB_AUX_BUILD_TARGET_CFLAGS=""
+
+CT_GCC_V_13=y
+CT_GCC_VERSION="13.2.0"
+CT_GCC_SRC_CUSTOM=y
+CT_GCC_CUSTOM_LOCATION=".build/tarballs/gcc-esp-13.2.0_20240305.tar.gz"
+
+CT_BINUTILS_V_2_41=y
+CT_BINUTILS_VERSION="2.41.0"
+CT_BINUTILS_SRC_CUSTOM=y
+CT_BINUTILS_CUSTOM_LOCATION=".build/tarballs/binutils-gdb-esp-2.41.0_20240305.tar.gz"
diff --git a/devel/xtensa-esp-elf/pkg-descr b/devel/xtensa-esp-elf/pkg-descr
new file mode 100644
index 000000000000..05d71b9ea016
--- /dev/null
+++ b/devel/xtensa-esp-elf/pkg-descr
@@ -0,0 +1,4 @@
+The Espressif ESP toolchain to support Arduino and FreeRTOS projects.
+
+This version produces a gcc 13.2.0 based toolchain for use with
+versions 5.2.2, 5.3.0, and 5.3.1 of the esp-idf.
diff --git a/devel/xtensa-esp-elf/pkg-plist b/devel/xtensa-esp-elf/pkg-plist
new file mode 100644
index 000000000000..38612ed32320
--- /dev/null
+++ b/devel/xtensa-esp-elf/pkg-plist
@@ -0,0 +1,2111 @@
+%%PKGBASE%%/bin/%%PKGBASE%%-addr2line
+%%PKGBASE%%/bin/%%PKGBASE%%-ar
+%%PKGBASE%%/bin/%%PKGBASE%%-as
+%%PKGBASE%%/bin/%%PKGBASE%%-c++
+%%PKGBASE%%/bin/%%PKGBASE%%-c++filt
+%%PKGBASE%%/bin/%%PKGBASE%%-cc
+%%PKGBASE%%/bin/%%PKGBASE%%-cpp
+%%PKGBASE%%/bin/%%PKGBASE%%-ct-ng.config
+%%PKGBASE%%/bin/%%PKGBASE%%-elfedit
+%%PKGBASE%%/bin/%%PKGBASE%%-g++
+%%PKGBASE%%/bin/%%PKGBASE%%-gcc
+%%PKGBASE%%/bin/%%PKGBASE%%-gcc-%%GCCVER%%
+%%PKGBASE%%/bin/%%PKGBASE%%-gcc-ar
+%%PKGBASE%%/bin/%%PKGBASE%%-gcc-nm
+%%PKGBASE%%/bin/%%PKGBASE%%-gcc-ranlib
+%%PKGBASE%%/bin/%%PKGBASE%%-gcov
+%%PKGBASE%%/bin/%%PKGBASE%%-gcov-dump
+%%PKGBASE%%/bin/%%PKGBASE%%-gcov-tool
+%%PKGBASE%%/bin/%%PKGBASE%%-gprof
+%%PKGBASE%%/bin/%%PKGBASE%%-ld
+%%PKGBASE%%/bin/%%PKGBASE%%-ld.bfd
+%%PKGBASE%%/bin/%%PKGBASE%%-lto-dump
+%%PKGBASE%%/bin/%%PKGBASE%%-nm
+%%PKGBASE%%/bin/%%PKGBASE%%-objcopy
+%%PKGBASE%%/bin/%%PKGBASE%%-objdump
+%%PKGBASE%%/bin/%%PKGBASE%%-ranlib
+%%PKGBASE%%/bin/%%PKGBASE%%-readelf
+%%PKGBASE%%/bin/%%PKGBASE%%-size
+%%PKGBASE%%/bin/%%PKGBASE%%-strings
+%%PKGBASE%%/bin/%%PKGBASE%%-strip
+%%PKGBASE%%/lib/bfd-plugins/libdep.so
+%%PKGBASE%%/lib/bfd-plugins/liblto_plugin.so
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/no-rtti/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32/psram/no-rtti/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s2/no-rtti/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/crtbegin.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/crtend.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/crti.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/crtn.o
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/esp32s3/no-rtti/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include-fixed/README
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/float.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/gcov.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/iso646.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/limits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdalign.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdarg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdatomic.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdbool.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stddef.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdfix.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdint-gcc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdint.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/stdnoreturn.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/syslimits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/tgmath.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/unwind.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/include/varargs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/fixinc_list
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/gsyslimits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/include/README
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/include/limits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/macro_list
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/mkheaders.conf
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/libgcc.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/libgcov.a
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/gtype.state
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ada/gcc-interface/ada-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/addresses.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/alias.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/align.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/all-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/alloc-pool.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ansidecl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/array-traits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/asan.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/attr-fnspec.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/attribs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/auto-host.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/auto-profile.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/b-header-vars
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/backend.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/basic-block.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/bb-reorder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/bitmap.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/builtin-attrs.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/builtin-types.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/builtins.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/builtins.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/bversion.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-family/c-common.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-family/c-common.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-family/c-objc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-family/c-pragma.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-family/c-pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/c-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/calls.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ccmp.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfg-flags.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfganal.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgbuild.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgcleanup.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgexpand.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfghooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgloop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgloopmanip.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cfgrtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cgraph.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cif-code.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/collect-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/collect2-aix.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/collect2.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/color-macros.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/conditions.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/elfos.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/initfini-array.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/newlib-stdint.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/xtensa/elf.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/xtensa/xtensa-opts.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/xtensa/xtensa-protos.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/config/xtensa/xtensa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/configargs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/context.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/convert.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/coretypes.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/coroutine-builtins.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/coverage.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/contracts.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/cp-trait.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/cp-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/cp-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/cxx-pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/name-lookup.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/operators.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cp/type-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cppbuiltin.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cppdefault.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cpplib.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/cselib.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ctfc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/d/d-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/data-streamer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dbgcnt.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dbgcnt.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dce.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ddg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/debug.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/defaults.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/df.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dfp.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-client-data-hooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-color.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-core.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-event-id.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-metadata.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-path.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-spec.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic-url.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/diagnostic.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/digraph.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dojump.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dominance.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/domwalk.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/double-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dump-context.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dumpfile.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dwarf2asm.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dwarf2ctf.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/dwarf2out.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/edit-context.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/emit-rtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/errors.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/escaped_string.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/et-forest.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/except.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/explow.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/expmed.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/expr.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/fibonacci_heap.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/file-find.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/file-prefix-map.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/filenames.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/fixed-value.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/flag-types.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/flags.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/fold-const-call.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/fold-const.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/function-abi.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/function.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcc-plugin.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcc-rich-location.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcc-symtab.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcov-counter.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcov-io.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcse-common.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gcse.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/generic-match.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gengtype.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/genrtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gensupport.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ggc-internal.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ggc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-array-bounds.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-builder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-expr.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-fold.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-iterator.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-low.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-match.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-predicate-analysis.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-predict.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-cache.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-edge.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-fold.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-gori.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-infer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-op.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-path.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range-trace.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-range.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-ssa-warn-access.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-ssa-warn-restrict.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-streamer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple-walk.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimple.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimplify-me.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gimplify.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/glimits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gomp-constants.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/graph.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/graphds.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/graphite.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/graphviz.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gsstruct.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gsyms.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gsyslimits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gtm-builtins.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/gtype-desc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hard-reg-set.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hash-map-traits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hash-map.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hash-set.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hash-table.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hash-traits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hashtab.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/highlev-plugin-common.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hosthooks-def.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hosthooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hw-doloop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/hwint.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ifcvt.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/inchash.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/incpath.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/input.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-addr.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-attr-common.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-attr.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-codes.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-config.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-constants.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-flags.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-modes-inline.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-modes.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/insn-notes.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/int-vector-builder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/internal-fn.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/internal-fn.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/intl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-fnsummary.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-icf-gimple.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-icf.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-inline.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-modref-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-modref.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-param-manipulation.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-predicate.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-prop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-ref.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-reference.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ipa-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ira-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ira.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/is-a.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/iterator-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/json.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/langhooks-def.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/langhooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lcm.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/libfuncs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/libiberty.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/limitx.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/limity.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/line-map.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/logical-location.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/loop-unroll.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lower-subreg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lra-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lra.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lto-compress.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lto-section-names.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/lto-streamer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/m2/m2-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/machmode.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/machmode.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/make-unique.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/md5.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/mem-stats-traits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/mem-stats.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/memmodel.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/memory-block.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/mode-classes.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/mux-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/objc/objc-tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/obstack-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/obstack.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-builtins.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-expand.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-general.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-low.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-offload.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/omp-simd-clone.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/opt-problem.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/opt-suggestions.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optabs-libfuncs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optabs-query.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optabs-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optabs.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optabs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optinfo-emit-json.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/optinfo.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/options.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/opts-diagnostic.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/opts-jobserver.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/opts.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ordered-hash-map.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/output.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/pass-instances.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/pass_manager.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/passes.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/plugin-api.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/plugin-version.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/plugin.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/plugin.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/pointer-query.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/poly-int-types.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/poly-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/predict.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/predict.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/prefix.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/print-rtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/print-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/profile-count.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/profile.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/range-op.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/range.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/read-md.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/read-rtl-function.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/real.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/realmpfr.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/recog.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/reg-notes.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/regcprop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/regrename.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/regs.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/regset.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/reload.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/resource.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtl-error.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtl-iter.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtl-ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtl.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtlanal.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtlhash.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtlhooks-def.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/rtx-vector-builder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/run-rtl-passes.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/safe-ctype.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sanitizer.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sbitmap.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sched-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sel-sched-dump.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sel-sched-ir.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sel-sched.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/selftest-diagnostic.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/selftest-rtl.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/selftest.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sese.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/shortest-paths.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/shrink-wrap.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/signop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sparseset.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/spellcheck-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/spellcheck.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/splay-tree-utils.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/splay-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sreal.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ssa-iterators.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/statistics.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/stmt.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/stor-layout.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/streamer-hooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/stringpool.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/substring-locations.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/symbol-summary.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/symtab-clones.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/symtab-thunks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/symtab.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/sync-builtins.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/system.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target-def.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target-globals.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target-hooks-macros.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target-insns.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/target.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/targhooks.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/timevar.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/timevar.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tm-preds.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tm.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tm_p.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/toplev.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tracer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/trans-mem.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-affine.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-cfg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-cfgcleanup.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-check.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-chrec.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-core.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-data-ref.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-dfa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-diagnostic.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-dump.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-eh.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-hash-traits.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-hasher.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-if-conv.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-inline.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-into-ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-iterator.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-logical-location.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-nested.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-object-size.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-outof-ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-parloops.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-pass.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-phinodes.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-scalar-evolution.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-sra.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-address.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-alias-compare.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-alias.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-ccp.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-coalesce.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-dce.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-dom.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-dse.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-live.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-loop-ivopts.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-loop-manip.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-loop-niter.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-loop.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-math-opts.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-operands.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-propagate.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-reassoc.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-sccvn.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-scopedtables.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-strlen.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-ter.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-threadedge.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa-threadupdate.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssa.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-ssanames.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-stdarg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-streamer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-switch-conversion.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-vector-builder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-vectorizer.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree-vrp.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/treestruct.def
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tristate.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tsan.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/tsystem.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/typeclass.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/typed-splay-tree.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/ubsan.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/valtrack.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-pointer-equiv.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-prof.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-query.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-range-pretty-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-range-storage.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-range.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/value-relation.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/varasm.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vec-perm-indices.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vec.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vector-builder.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/version.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vmsdbg.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vr-values.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/vtable-verify.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/wide-int-bitmask.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/wide-int-print.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/wide-int.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/xcoff.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/xtensa-config.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/include/xtensa-dynconfig.h
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/libcc1plugin.so
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/libcc1plugin.so.0
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/libcp1plugin.so
+%%PKGBASE%%/lib/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/libcp1plugin.so.0
+%%PKGBASE%%/lib/libcc1.so
+%%PKGBASE%%/lib/libcc1.so.0
+%%PKGBASE%%/lib/xtensa_esp32.so
+%%PKGBASE%%/lib/xtensa_esp32s2.so
+%%PKGBASE%%/lib/xtensa_esp32s3.so
+%%PKGBASE%%/lib/xtensa_esp8266.so
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/cc1
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/cc1plus
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/collect2
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/g++-mapper-server
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/fixinc.sh
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/fixincl
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/mkheaders
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/install-tools/mkinstalldirs
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/liblto_plugin.so
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/lto-wrapper
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/lto1
+%%PKGBASE%%/libexec/gcc/%%PKGBASE%%/%%GCCVER%%/plugin/gengtype
+%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/__init__.py
+%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/__init__.py
+%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/printers.py
+%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/xmethods.py
+%%PKGBASE%%/share/iconv_data/big5.cct
+%%PKGBASE%%/share/iconv_data/cns11643_plane1.cct
+%%PKGBASE%%/share/iconv_data/cns11643_plane14.cct
+%%PKGBASE%%/share/iconv_data/cns11643_plane2.cct
+%%PKGBASE%%/share/iconv_data/cp775.cct
+%%PKGBASE%%/share/iconv_data/cp850.cct
+%%PKGBASE%%/share/iconv_data/cp852.cct
+%%PKGBASE%%/share/iconv_data/cp855.cct
+%%PKGBASE%%/share/iconv_data/cp866.cct
+%%PKGBASE%%/share/iconv_data/encoding.aliases
+%%PKGBASE%%/share/iconv_data/iso_8859_1.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_10.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_11.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_13.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_14.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_15.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_2.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_3.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_4.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_5.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_6.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_7.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_8.cct
+%%PKGBASE%%/share/iconv_data/iso_8859_9.cct
+%%PKGBASE%%/share/iconv_data/iso_ir_111.cct
+%%PKGBASE%%/share/iconv_data/jis_x0201_1976.cct
+%%PKGBASE%%/share/iconv_data/jis_x0208_1990.cct
+%%PKGBASE%%/share/iconv_data/jis_x0212_1990.cct
+%%PKGBASE%%/share/iconv_data/koi8_r.cct
+%%PKGBASE%%/share/iconv_data/koi8_ru.cct
+%%PKGBASE%%/share/iconv_data/koi8_u.cct
+%%PKGBASE%%/share/iconv_data/koi8_uni.cct
+%%PKGBASE%%/share/iconv_data/ksx1001.cct
+%%PKGBASE%%/share/iconv_data/win_1250.cct
+%%PKGBASE%%/share/iconv_data/win_1251.cct
+%%PKGBASE%%/share/iconv_data/win_1252.cct
+%%PKGBASE%%/share/iconv_data/win_1253.cct
+%%PKGBASE%%/share/iconv_data/win_1254.cct
+%%PKGBASE%%/share/iconv_data/win_1255.cct
+%%PKGBASE%%/share/iconv_data/win_1256.cct
+%%PKGBASE%%/share/iconv_data/win_1257.cct
+%%PKGBASE%%/share/iconv_data/win_1258.cct
+%%PKGBASE%%/share/licenses/binutils/COPYING
+%%PKGBASE%%/share/licenses/binutils/COPYING.LIB
+%%PKGBASE%%/share/licenses/binutils/COPYING.LIBGLOSS
+%%PKGBASE%%/share/licenses/binutils/COPYING.NEWLIB
+%%PKGBASE%%/share/licenses/binutils/COPYING3
+%%PKGBASE%%/share/licenses/binutils/COPYING3.LIB
+%%PKGBASE%%/share/licenses/binutils/bfd/COPYING
+%%PKGBASE%%/share/licenses/binutils/gas/COPYING
+%%PKGBASE%%/share/licenses/binutils/gdb/COPYING
+%%PKGBASE%%/share/licenses/binutils/include/COPYING
+%%PKGBASE%%/share/licenses/binutils/include/COPYING3
+%%PKGBASE%%/share/licenses/binutils/libiberty/COPYING.LIB
+%%PKGBASE%%/share/licenses/binutils/readline/readline/COPYING
+%%PKGBASE%%/share/licenses/binutils/sim/COPYING
+%%PKGBASE%%/share/licenses/binutils/zlib/contrib/dotzlib/LICENSE_1_0.txt
+%%PKGBASE%%/share/licenses/crosstool-ng/COPYING
+%%PKGBASE%%/share/licenses/crosstool-ng/LICENSE
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed.en
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed_files/deed.gif
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed_files/deed_002.gif
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed_files/deeds.css
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed_files/logo_deed.gif
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/deed_files/popup.gif
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/legalcode
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/legalcode_files/deeds.css
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/by-sa/legalcode_files/logo_code.gif
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/gpl.txt
+%%PKGBASE%%/share/licenses/crosstool-ng/licenses.d/lgpl.txt
+%%PKGBASE%%/share/licenses/gcc/COPYING
+%%PKGBASE%%/share/licenses/gcc/COPYING.LIB
+%%PKGBASE%%/share/licenses/gcc/COPYING.RUNTIME
+%%PKGBASE%%/share/licenses/gcc/COPYING3
+%%PKGBASE%%/share/licenses/gcc/COPYING3.LIB
+%%PKGBASE%%/share/licenses/gcc/gcc/COPYING
+%%PKGBASE%%/share/licenses/gcc/gcc/COPYING.LIB
+%%PKGBASE%%/share/licenses/gcc/gcc/COPYING3
+%%PKGBASE%%/share/licenses/gcc/gcc/COPYING3.LIB
+%%PKGBASE%%/share/licenses/gcc/gcc/go/gofrontend/LICENSE
+%%PKGBASE%%/share/licenses/gcc/gcc/m2/COPYING.FDL
+%%PKGBASE%%/share/licenses/gcc/gcc/m2/COPYING.RUNTIME
+%%PKGBASE%%/share/licenses/gcc/gcc/m2/COPYING3
+%%PKGBASE%%/share/licenses/gcc/gcc/m2/COPYING3.LIB
+%%PKGBASE%%/share/licenses/gcc/gcc/m2/images/LICENSE.IMG
+%%PKGBASE%%/share/licenses/gcc/gcc/testsuite/gcc.dg/params/LICENSE
+%%PKGBASE%%/share/licenses/gcc/include/COPYING
+%%PKGBASE%%/share/licenses/gcc/include/COPYING3
+%%PKGBASE%%/share/licenses/gcc/libcody/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libffi/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libffi/LICENSE-BUILDTOOLS
+%%PKGBASE%%/share/licenses/gcc/libgo/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libgo/go/golang.org/x/mod/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libgo/go/golang.org/x/sync/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libgo/go/golang.org/x/tools/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libgo/go/golang.org/x/xerrors/LICENSE
+%%PKGBASE%%/share/licenses/gcc/libiberty/COPYING.LIB
+%%PKGBASE%%/share/licenses/gcc/libphobos/libdruntime/LICENSE.txt
+%%PKGBASE%%/share/licenses/gcc/libphobos/src/LICENSE_1_0.txt
+%%PKGBASE%%/share/licenses/gcc/libquadmath/COPYING.LIB
+%%PKGBASE%%/share/licenses/gcc/libsanitizer/LICENSE.TXT
+%%PKGBASE%%/share/licenses/gcc/libstdc++-v3/include/pstl/LICENSE.txt
+%%PKGBASE%%/share/licenses/gcc/zlib/contrib/dotzlib/LICENSE_1_0.txt
+%%PKGBASE%%/share/licenses/gmp/COPYING
+%%PKGBASE%%/share/licenses/gmp/COPYING.LESSERv3
+%%PKGBASE%%/share/licenses/gmp/COPYINGv2
+%%PKGBASE%%/share/licenses/gmp/COPYINGv3
+%%PKGBASE%%/share/licenses/isl/LICENSE
+%%PKGBASE%%/share/licenses/mpc/COPYING.LESSER
+%%PKGBASE%%/share/licenses/mpfr/COPYING
+%%PKGBASE%%/share/licenses/mpfr/COPYING.LESSER
+%%PKGBASE%%/share/licenses/newlib/COPYING
+%%PKGBASE%%/share/licenses/newlib/COPYING.LIB
+%%PKGBASE%%/share/licenses/newlib/COPYING.LIBGLOSS
+%%PKGBASE%%/share/licenses/newlib/COPYING.NEWLIB
+%%PKGBASE%%/share/licenses/newlib/COPYING3
+%%PKGBASE%%/share/licenses/newlib/COPYING3.LIB
+%%PKGBASE%%/share/licenses/newlib/include/COPYING
+%%PKGBASE%%/share/licenses/newlib/include/COPYING3
+%%PKGBASE%%/share/licenses/newlib/newlib/libc/posix/COPYRIGHT
+%%PKGBASE%%/share/licenses/newlib/winsup/COPYING
+%%PKGBASE%%/share/licenses/newlib/winsup/COPYING.LIB
+%%PKGBASE%%/share/licenses/newlib/winsup/cygwin/regex/COPYRIGHT
+%%PKGBASE%%/share/licenses/newlib/winsup/utils/COPYING.dumper
+%%PKGBASE%%/share/licenses/zlib/LICENSE
+%%PKGBASE%%/share/licenses/zlib/contrib/dotzlib/LICENSE_1_0.txt
+%%PKGBASE%%/share/licenses/zstd/COPYING
+%%PKGBASE%%/share/licenses/zstd/LICENSE
+%%PKGBASE%%/share/licenses/zstd/build/LICENSE
+%%PKGBASE%%/%%PKGBASE%%/bin/ar
+%%PKGBASE%%/%%PKGBASE%%/bin/as
+%%PKGBASE%%/%%PKGBASE%%/bin/ld
+%%PKGBASE%%/%%PKGBASE%%/bin/ld.bfd
+%%PKGBASE%%/%%PKGBASE%%/bin/nm
+%%PKGBASE%%/%%PKGBASE%%/bin/objcopy
+%%PKGBASE%%/%%PKGBASE%%/bin/objdump
+%%PKGBASE%%/%%PKGBASE%%/bin/ranlib
+%%PKGBASE%%/%%PKGBASE%%/bin/readelf
+%%PKGBASE%%/%%PKGBASE%%/bin/strip
+%%PKGBASE%%/%%PKGBASE%%/include/_ansi.h
+%%PKGBASE%%/%%PKGBASE%%/include/_newlib_version.h
+%%PKGBASE%%/%%PKGBASE%%/include/_syslist.h
+%%PKGBASE%%/%%PKGBASE%%/include/alloca.h
+%%PKGBASE%%/%%PKGBASE%%/include/ar.h
+%%PKGBASE%%/%%PKGBASE%%/include/argz.h
+%%PKGBASE%%/%%PKGBASE%%/include/assert.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/algorithm
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/any
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/array
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/atomic
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/auto_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/backward_warning.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/binders.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/hash_fun.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/hash_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/hash_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/hashtable.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/backward/strstream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/barrier
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bit
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/algorithmfwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/align.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/alloc_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/allocated_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/atomic_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/atomic_futex.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/atomic_lockfree_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/atomic_timed_wait.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/atomic_wait.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/basic_ios.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/basic_ios.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/basic_string.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/basic_string.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/boost_concept_check.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/c++0x_warning.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/char_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/charconv.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/chrono.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/chrono_io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/codecvt.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/concept_check.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/cow_string.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/cpp_type_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/cxxabi_forced.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/cxxabi_init_exception.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/deque.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/enable_special_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/erase_if.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/exception.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/exception_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/exception_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/forward_list.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/forward_list.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/fs_dir.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/fs_fwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/fs_ops.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/fs_path.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/fstream.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/functexcept.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/functional_hash.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/gslice.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/gslice_array.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/hash_bytes.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/hashtable.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/hashtable_policy.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/indirect_array.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/invoke.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ios_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/istream.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/iterator_concepts.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/list.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_classes.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_classes.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_conv.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_facets.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_facets.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_facets_nonio.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/locale_facets_nonio.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/localefwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/mask_array.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/max_size_type.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/memory_resource.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/memoryfwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/mofunc_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/move.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/move_only_function.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/nested_exception.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/new_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/node_handle.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ostream.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ostream_insert.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/parse_numbers.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/postypes.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/predefined_ops.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ptr_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/quoted_string.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/random.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/range_access.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_algo.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_algobase.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_cmp.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_uninitialized.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/ranges_util.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/refwrap.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_automaton.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_automaton.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_compiler.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_compiler.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_error.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_executor.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_executor.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_scanner.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/regex_scanner.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/requires_hosted.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/semaphore_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/shared_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/shared_ptr_atomic.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/shared_ptr_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/slice_array.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/specfun.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/sstream.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/std_abs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/std_function.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/std_mutex.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/std_thread.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_algo.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_algobase.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_bvector.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_construct.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_deque.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_function.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_heap.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_iterator_base_funcs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_iterator_base_types.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_list.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_map.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_multimap.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_multiset.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_numeric.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_pair.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_queue.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_raw_storage_iter.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_relops.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_set.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_stack.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_tempbuf.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_tree.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_uninitialized.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stl_vector.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stream_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/streambuf.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/streambuf_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/string_view.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/stringfwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/this_thread_sleep.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/uniform_int_dist.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/unique_lock.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/unique_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/unordered_map.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/unordered_set.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/uses_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/uses_allocator_args.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/utility.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/valarray_after.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/valarray_array.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/valarray_array.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/valarray_before.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bits/vector.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/bitset
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cassert
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ccomplex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cctype
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cerrno
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cfenv
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cfloat
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/charconv
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/chrono
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cinttypes
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ciso646
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/climits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/clocale
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cmath
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/codecvt
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/compare
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/complex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/complex.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/concepts
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/condition_variable
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/coroutine
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/csetjmp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/csignal
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdalign
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdarg
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdbool
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstddef
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdint
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdio
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstdlib
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cstring
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ctgmath
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ctime
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cuchar
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cwchar
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cwctype
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/cxxabi.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/assertions.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/bitset
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/debug.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/deque
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/formatter.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/forward_list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/functions.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/helper_functions.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/macros.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/map.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/multimap.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/multiset.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_container.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_iterator.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_local_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_local_iterator.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_sequence.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_sequence.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_unordered_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_unordered_container.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/safe_unordered_container.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/set.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/stl_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/string
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/unordered_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/unordered_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/debug/vector
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/decimal/decimal
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/decimal/decimal.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/deque
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/exception
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/execution
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/expected
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/algorithm
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/any
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/array
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/lfts_config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/net.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/numeric_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/shared_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_builtin.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_converter.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_detail.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_fixed_size.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_math.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_neon.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_ppc.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_scalar.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_x86.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/simd_x86_conversions.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/bits/string_view.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/buffer
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/chrono
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/contract
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/deque
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/executor
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/forward_list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/functional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/internet
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/io_context
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/iterator
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/memory
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/memory_resource
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/net
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/netfwd
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/numeric
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/optional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/propagate_const
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/random
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/ratio
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/regex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/scope
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/simd
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/socket
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/source_location
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/string
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/string_view
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/synchronized_value
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/system_error
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/timer
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/tuple
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/type_traits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/unordered_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/unordered_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/utility
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/experimental/vector
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/algorithm
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/aligned_buffer.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/alloc_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/atomicity.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/bitmap_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/cast.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/cmath
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/codecvt_specializations.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/concurrence.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/debug_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/enc_filebuf.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/extptr_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/functional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/hash_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/hash_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/iterator
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/malloc_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/memory
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/mt_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/new_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/numeric
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/numeric_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/assoc_container.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/branch_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/cond_dealtor.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/container_base_dispatch.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/debug_map_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/node.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/node.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/standard_policies.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_trace_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/type_utils.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/types_traits.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/exception.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/hash_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/list_update_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/priority_queue.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/tag_and_trait.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/tree_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pb_ds/trie_policy.hpp
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pod_char_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pointer.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/pool_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/random
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/random.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/rb_tree
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/rc_string_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/rope
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/ropeimpl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/slist
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/sso_string_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/stdio_filebuf.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/stdio_sync_filebuf.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/string_conversions.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/throw_allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/type_traits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/typelist.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/vstring.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/vstring.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/vstring_fwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ext/vstring_util.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/fenv.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/filesystem
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/format
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/forward_list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/fstream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/functional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/future
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/initializer_list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/iomanip
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ios
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/iosfwd
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/iostream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/istream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/iterator
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/latch
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/limits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/list
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/locale
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/math.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/memory
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/memory_resource
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/mutex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/new
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/numbers
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/numeric
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/optional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ostream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/algo.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/algobase.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/algorithm
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/algorithmfwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/balanced_quicksort.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/basic_iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/checkers.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/compatibility.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/compiletime_settings.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/equally_split.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/features.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/find.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/find_selectors.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/for_each.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/for_each_selectors.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/iterator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/list_partition.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/losertree.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/merge.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/multiseq_selection.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/multiway_merge.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/multiway_mergesort.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/numeric
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/numericfwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/omp_loop.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/omp_loop_static.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/par_loop.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/parallel.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/partial_sum.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/partition.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/queue.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/quicksort.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/random_number.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/random_shuffle.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/search.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/set_operations.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/settings.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/sort.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/tags.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/types.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/unique_copy.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/parallel/workstealing.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/algorithm_fwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/algorithm_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/execution_defs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/execution_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_algorithm_defs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_algorithm_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_execution_defs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_memory_defs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_memory_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_numeric_defs.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/glue_numeric_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/memory_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/numeric_fwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/numeric_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/parallel_backend.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/parallel_backend_serial.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/parallel_backend_tbb.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/parallel_backend_utils.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/parallel_impl.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/pstl_config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/unseq_backend_simd.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/pstl/utils.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/queue
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/random
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ranges
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/ratio
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/regex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/scoped_allocator
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/semaphore
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/shared_mutex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/source_location
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/span
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/spanstream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/sstream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stack
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stacktrace
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stdatomic.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stdexcept
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stdfloat
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stdlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/stop_token
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/streambuf
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/string
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/string_view
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/syncstream
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/system_error
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tgmath.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/thread
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/array
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/bessel_function.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/beta_function.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/ccomplex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cctype
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cfenv
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cfloat
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cinttypes
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/climits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cmath
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/complex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/complex.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cstdarg
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cstdbool
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cstdint
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cstdio
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cstdlib
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/ctgmath
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/ctime
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/ctype.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cwchar
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/cwctype
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/ell_integral.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/exp_integral.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/fenv.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/float.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/functional
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/functional_hash.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/gamma.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/hashtable.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/hashtable_policy.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/hypergeometric.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/inttypes.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/legendre_function.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/limits.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/math.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/memory
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/modified_bessel_func.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/poly_hermite.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/poly_laguerre.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/random
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/random.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/regex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/riemann_zeta.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/shared_ptr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/special_function_util.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/stdarg.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/stdbool.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/stdint.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/stdio.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/stdlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/tgmath.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/tuple
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/type_traits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/unordered_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/unordered_map.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/unordered_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/unordered_set.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/utility
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/wchar.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr1/wctype.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/bool_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/bool_set.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/dynamic_bitset
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/dynamic_bitset.tcc
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/ratio
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tr2/type_traits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/tuple
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/type_traits
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/typeindex
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/typeinfo
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/unordered_map
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/unordered_set
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/utility
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/valarray
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/variant
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/vector
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/version
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/no-rtti/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32/psram/no-rtti/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s2/no-rtti/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/atomic_word.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/basic_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/c++allocator.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/c++config.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/c++io.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/c++locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/cpu_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/ctype_base.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/ctype_inline.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/cxxabi_tweaks.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/error_constants.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/extc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/gthr-default.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/gthr-posix.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/gthr-single.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/gthr.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/messages_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/os_defines.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/stdc++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/stdtr1c++.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/bits/time_members.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/esp32s3/no-rtti/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/c++/%%GCCVER%%/%%PKGBASE%%/ext/opt_random.h
+%%PKGBASE%%/%%PKGBASE%%/include/complex.h
+%%PKGBASE%%/%%PKGBASE%%/include/cpio.h
+%%PKGBASE%%/%%PKGBASE%%/include/ctype.h
+%%PKGBASE%%/%%PKGBASE%%/include/devctl.h
+%%PKGBASE%%/%%PKGBASE%%/include/dirent.h
+%%PKGBASE%%/%%PKGBASE%%/include/elf.h
+%%PKGBASE%%/%%PKGBASE%%/include/envlock.h
+%%PKGBASE%%/%%PKGBASE%%/include/envz.h
+%%PKGBASE%%/%%PKGBASE%%/include/errno.h
+%%PKGBASE%%/%%PKGBASE%%/include/fastmath.h
+%%PKGBASE%%/%%PKGBASE%%/include/fcntl.h
+%%PKGBASE%%/%%PKGBASE%%/include/fenv.h
+%%PKGBASE%%/%%PKGBASE%%/include/fnmatch.h
+%%PKGBASE%%/%%PKGBASE%%/include/ftw.h
+%%PKGBASE%%/%%PKGBASE%%/include/getopt.h
+%%PKGBASE%%/%%PKGBASE%%/include/glob.h
+%%PKGBASE%%/%%PKGBASE%%/include/grp.h
+%%PKGBASE%%/%%PKGBASE%%/include/iconv.h
+%%PKGBASE%%/%%PKGBASE%%/include/ieeefp.h
+%%PKGBASE%%/%%PKGBASE%%/include/inttypes.h
+%%PKGBASE%%/%%PKGBASE%%/include/langinfo.h
+%%PKGBASE%%/%%PKGBASE%%/include/libgen.h
+%%PKGBASE%%/%%PKGBASE%%/include/limits.h
+%%PKGBASE%%/%%PKGBASE%%/include/locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/_arc4random.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/_default_types.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/_endian.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/_time.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/_types.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/ansi.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/endian.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/fastmath.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/ieee.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/ieeefp.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/malloc.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/param.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/setjmp-dj.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/setjmp.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/stdlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/termios.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/time.h
+%%PKGBASE%%/%%PKGBASE%%/include/machine/types.h
+%%PKGBASE%%/%%PKGBASE%%/include/malloc.h
+%%PKGBASE%%/%%PKGBASE%%/include/math.h
+%%PKGBASE%%/%%PKGBASE%%/include/memory.h
+%%PKGBASE%%/%%PKGBASE%%/include/ndbm.h
+%%PKGBASE%%/%%PKGBASE%%/include/newlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/paths.h
+%%PKGBASE%%/%%PKGBASE%%/include/pthread.h
+%%PKGBASE%%/%%PKGBASE%%/include/pwd.h
+%%PKGBASE%%/%%PKGBASE%%/include/reent.h
+%%PKGBASE%%/%%PKGBASE%%/include/regdef.h
+%%PKGBASE%%/%%PKGBASE%%/include/regex.h
+%%PKGBASE%%/%%PKGBASE%%/include/sched.h
+%%PKGBASE%%/%%PKGBASE%%/include/search.h
+%%PKGBASE%%/%%PKGBASE%%/include/setjmp.h
+%%PKGBASE%%/%%PKGBASE%%/include/signal.h
+%%PKGBASE%%/%%PKGBASE%%/include/spawn.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/ssp.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/stdio.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/stdlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/string.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/strings.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/unistd.h
+%%PKGBASE%%/%%PKGBASE%%/include/ssp/wchar.h
+%%PKGBASE%%/%%PKGBASE%%/include/stdatomic.h
+%%PKGBASE%%/%%PKGBASE%%/include/stdint.h
+%%PKGBASE%%/%%PKGBASE%%/include/stdio.h
+%%PKGBASE%%/%%PKGBASE%%/include/stdio_ext.h
+%%PKGBASE%%/%%PKGBASE%%/include/stdlib.h
+%%PKGBASE%%/%%PKGBASE%%/include/string.h
+%%PKGBASE%%/%%PKGBASE%%/include/strings.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_default_fcntl.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_intsup.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_locale.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_pthreadtypes.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_sigset.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_stdint.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_timespec.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_timeval.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_types.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/_tz_structs.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/cdefs.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/config.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/custom_file.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/dir.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/dirent.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/errno.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/fcntl.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/features.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/fenv.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/file.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/iconvnls.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/lock.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/param.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/queue.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/reent.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/resource.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/sched.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/select.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/signal.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/stat.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/stdio.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/string.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/syslimits.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/time.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/timeb.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/times.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/timespec.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/tree.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/types.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/unistd.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/utime.h
+%%PKGBASE%%/%%PKGBASE%%/include/sys/wait.h
+%%PKGBASE%%/%%PKGBASE%%/include/tar.h
+%%PKGBASE%%/%%PKGBASE%%/include/termios.h
+%%PKGBASE%%/%%PKGBASE%%/include/tgmath.h
+%%PKGBASE%%/%%PKGBASE%%/include/threads.h
+%%PKGBASE%%/%%PKGBASE%%/include/time.h
+%%PKGBASE%%/%%PKGBASE%%/include/unctrl.h
+%%PKGBASE%%/%%PKGBASE%%/include/unistd.h
+%%PKGBASE%%/%%PKGBASE%%/include/utime.h
+%%PKGBASE%%/%%PKGBASE%%/include/utmp.h
+%%PKGBASE%%/%%PKGBASE%%/include/wchar.h
+%%PKGBASE%%/%%PKGBASE%%/include/wctype.h
+%%PKGBASE%%/%%PKGBASE%%/include/wordexp.h
+%%PKGBASE%%/%%PKGBASE%%/include/xtensa/config/core-isa.h
+%%PKGBASE%%/%%PKGBASE%%/lib/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/no-rtti/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/no-rtti/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/psram/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/no-rtti/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s2/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/app.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/board.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/crt0.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/crt1-boards.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/crt1-sim.o
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/default.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libsys_openocd.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/libsys_qemu.a
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/memory.elf.ld
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/no-rtti/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/esp32s3/sys.qemu.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.x
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xbn
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xc
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xce
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xd
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdc
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdce
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xde
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdw
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdwe
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xe
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xn
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xr
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xs
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xsc
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xsce
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xse
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xsw
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xswe
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xu
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xw
+%%PKGBASE%%/%%PKGBASE%%/lib/ldscripts/elf32xtensa.xwe
+%%PKGBASE%%/%%PKGBASE%%/lib/libc.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libc_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libg.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libg_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libgloss.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libm.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libm_nano.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libnosys.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libpthread_stubs.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libstdc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libstdc++.a-gdb.py
+%%PKGBASE%%/%%PKGBASE%%/lib/libstdc++exp.a
+%%PKGBASE%%/%%PKGBASE%%/lib/libsupc++.a
+%%PKGBASE%%/%%PKGBASE%%/lib/nano.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/nosys.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/sim.elf.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/sys.openocd.specs
+%%PKGBASE%%/%%PKGBASE%%/lib/sys.qemu.specs
+@dir %%PKGBASE%%/include
+@dir %%PKGBASE%%/%%PKGBASE%%/include/bits
+@dir %%PKGBASE%%/%%PKGBASE%%/include/rpc
+@dir %%PKGBASE%%/%%PKGBASE%%/usr/lib
diff --git a/devel/xtensa-esp32-elf/Makefile b/devel/xtensa-esp32-elf/Makefile
deleted file mode 100644
index 1aa99406dcad..000000000000
--- a/devel/xtensa-esp32-elf/Makefile
+++ /dev/null
@@ -1,108 +0,0 @@
-PORTNAME= xtensa-esp32-elf
-DISTVERSION= 1.22.0.g20200907
-PORTREVISION= 3
-CATEGORIES= devel
-MASTER_SITES= SOURCEWARE/binutils/releases/binutils:source1 \
- GNU/binutils:source1 \
- https://github.com/libexpat/libexpat/releases/download/R_2_1_0/:source2 \
- SF/expat/expat/2.1.0:source2 \
- GCC/releases/gcc-${GCCVER}:source3 \
- GNU/gdb:source4 \
- GNU/gmp:source5 \
- http://isl.gforge.inria.fr/:source6 \
- GNU/mpc:source7 \
- http://www.mpfr.org/mpfr-3.1.3/:source8 \
- GNU/mpfr:source8 \
- ftp://ftp.invisible-island.net/ncurses/:source9 \
- GNU/ncurses:source9 \
- SOURCEWARE/newlib:source10
-DISTFILES= binutils-2.25.1.tar.bz2:source1 \
- expat-2.1.0.tar.gz:source2 \
- gcc-${GCCVER}.tar.bz2:source3 \
- gdb-7.10.tar.xz:source4 \
- gmp-6.0.0a.tar.xz:source5 \
- isl-0.14.tar.xz:source6 \
- mpc-1.0.3.tar.gz:source7 \
- mpfr-3.1.3.tar.xz:source8 \
- ncurses-6.0.tar.gz:source9 \
- newlib-2.2.0.tar.gz:source10
-EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
-
-MAINTAINER= leres@FreeBSD.org
-COMMENT= Espressif ESP32 toolchain
-WWW= https://dl.espressif.com/doc/esp-idf/latest/get-started/index.html #setup-toolchain
-
-LICENSE= GPLv2 LGPL21
-LICENSE_COMB= multi
-
-BUILD_DEPENDS= bash:shells/bash \
- gawk:lang/gawk \
- gpatch:devel/patch \
- ${LOCALBASE}/bin/grep:textproc/gnugrep \
- gperf:devel/gperf \
- gsed:textproc/gsed \
- help2man:misc/help2man \
- makeinfo:print/texinfo \
- wget:ftp/wget
-
-USES= autoreconf:build bison gmake libtool python
-USE_GCC= 10
-USE_GITHUB= yes
-
-NO_MTREE= yes
-SUBDIR= crosstool-NG
-TAGNAME= 1.22.0-97-gc752ad5
-GH_TUPLE= espressif:${SUBDIR}:${TAGNAME}
-BINARY_ALIAS= g++=${CXX} gcc=${CC} python=${PYTHON_VERSION}
-BUILD_ENV= CT_ALLOW_BUILD_AS_ROOT_SURE=1 \
- CT_FORBID_DOWNLOAD=y \
- GREP=${LOCALBASE}/bin/grep \
- LD_RUN_PATH=${PREFIX}/lib/${CC} \
- LDFLAGS=-I/usr/local/lib \
- ${MAKE_ENV:MPATH=*}
-
-ESPVER= crosstool-ng-$(TAGNAME)
-GCCVER= 5.2.0
-PLIST_SUB= PKGBASE=$(PKGBASE) GCCVER=$(GCCVER)
-TARBALLS= ${BUILD_WRKSRC}/.build/tarballs
-
-post-extract:
- ${MKDIR} ${TARBALLS}
-.for F in $(DISTFILES:N$(EXTRACT_ONLY))
- ${LN} -s ${DISTDIR}/${F:C/:source[0-9]+$//} ${TARBALLS}
-.endfor
- ${MKDIR} ${WRKSRC}/local-patches/gdb/7.10
- ${CP} ${FILESDIR}/0001-gdb-7.12.1.patch ${WRKSRC}/local-patches/gdb/7.10
- echo CT_LOG_PROGRESS_BAR=n >> \
- ${BUILD_WRKSRC}/samples/${PORTNAME}/crosstool.config
-
-do-configure:
- cd ${BUILD_WRKSRC} && ./bootstrap
- ${PRINTF} "#!/bin/sh\necho '${ESPVER}'\n" > \
- ${BUILD_WRKSRC}/version.sh
- ${CHMOD} -w+x ${BUILD_WRKSRC}/version.sh
- cd ${BUILD_WRKSRC} && \
- ${SETENV} ${BUILD_ENV} \
- ./configure --enable-local --prefix=${WRKDIR}/ct-ng --exec-prefix=${WRKDIR}/ct-ng
- cd ${BUILD_WRKSRC} && \
- ${SETENV} -uMAKELEVEL -uMAKEFLAGS -u.MAKE.LEVEL.ENV ${BUILD_ENV} \
- ${MAKE_CMD} install && ${SETENV} ${BUILD_ENV} ./ct-ng ${PORTNAME}
-
-do-build:
- cd ${BUILD_WRKSRC} && ${SETENV} ${BUILD_ENV} ./ct-ng build
- cd ${BUILD_WRKSRC}/builds/${PORTNAME} && \
- ${CHMOD} +w . lib && \
- ${RM} build.log.bz2 lib/charset.alias && \
- ${CHMOD} -w . lib
-
-do-install:
- cd ${BUILD_WRKSRC}/builds/${PORTNAME} && \
- ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/${PKGBASE}
- ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE} -type f | \
- ${XARGS} ${CHMOD} -wx
- ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE}/bin \
- ${STAGEDIR}${PREFIX}/${PKGBASE}/libexec/gcc/${PORTNAME}/${GCCVER} \
- ${STAGEDIR}${PREFIX}/${PKGBASE}/${PORTNAME}/bin -type f | \
- ${XARGS} ${CHMOD} +x
-
-.include <bsd.port.mk>
diff --git a/devel/xtensa-esp32-elf/distinfo b/devel/xtensa-esp32-elf/distinfo
deleted file mode 100644
index a8005aabd8ed..000000000000
--- a/devel/xtensa-esp32-elf/distinfo
+++ /dev/null
@@ -1,23 +0,0 @@
-TIMESTAMP = 1604959694
-SHA256 (binutils-2.25.1.tar.bz2) = b5b14added7d78a8d1ca70b5cb75fef57ce2197264f4f5835326b0df22ac9f22
-SIZE (binutils-2.25.1.tar.bz2) = 24163561
-SHA256 (expat-2.1.0.tar.gz) = 823705472f816df21c8f6aa026dd162b280806838bb55b3432b0fb1fcca7eb86
-SIZE (expat-2.1.0.tar.gz) = 562616
-SHA256 (gcc-5.2.0.tar.bz2) = 5f835b04b5f7dd4f4d2dc96190ec1621b8d89f2dc6f638f9f8bc1b1014ba8cad
-SIZE (gcc-5.2.0.tar.bz2) = 95221552
-SHA256 (gdb-7.10.tar.xz) = 7ebdaa44f9786ce0c142da4e36797d2020c55fa091905ac5af1846b5756208a8
-SIZE (gdb-7.10.tar.xz) = 18540820
-SHA256 (gmp-6.0.0a.tar.xz) = 9156d32edac6955bc53b0218f5f3763facb890b73a835d5e1b901dcf8eb8b764
-SIZE (gmp-6.0.0a.tar.xz) = 1904112
-SHA256 (isl-0.14.tar.xz) = b1044f02819da0708fc7071fa2a558ce5d3c29d6676c8cb113caaedd5903ff03
-SIZE (isl-0.14.tar.xz) = 1247052
-SHA256 (mpc-1.0.3.tar.gz) = 617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3
-SIZE (mpc-1.0.3.tar.gz) = 669925
-SHA256 (mpfr-3.1.3.tar.xz) = 6835a08bd992c8257641791e9a6a2b35b02336c8de26d0a8577953747e514a16
-SIZE (mpfr-3.1.3.tar.xz) = 1112096
-SHA256 (ncurses-6.0.tar.gz) = f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260
-SIZE (ncurses-6.0.tar.gz) = 3131891
-SHA256 (newlib-2.2.0.tar.gz) = f8add263b0737591aff451b12a00c262c2efac4fa87d741fa1c318fc3bb335be
-SIZE (newlib-2.2.0.tar.gz) = 16521910
-SHA256 (espressif-crosstool-NG-1.22.0.g20200907-1.22.0-97-gc752ad5_GH0.tar.gz) = 6219346b4adef881820c4f90094c530c861a2b02a54831eef02ad03ef69ca251
-SIZE (espressif-crosstool-NG-1.22.0.g20200907-1.22.0-97-gc752ad5_GH0.tar.gz) = 2669631
diff --git a/devel/xtensa-esp32-elf/files/0001-gdb-7.12.1.patch b/devel/xtensa-esp32-elf/files/0001-gdb-7.12.1.patch
deleted file mode 100644
index 10ed9ce93283..000000000000
--- a/devel/xtensa-esp32-elf/files/0001-gdb-7.12.1.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Derived from:
-
- https://github.com/crosstool-ng/crosstool-ng/issues/1206
- _PyImport_FixupBuiltin Solution patch #1206
-
---- a/gdb/python/python.c.orig 2019-06-14 11:41:02.944671520 +0800
-+++ b/gdb/python/python.c 2019-06-14 11:55:32.000000000 +0800
-@@ -1624,6 +1624,17 @@ finalize_python (void *ignore)
- }
- #endif
-
-+#ifdef IS_PY3K
-+/* This is called via the PyImport_AppendInittab mechanism called
-+ during initialization, to make the built-in _gdb module known to
-+ Python. */
-+PyMODINIT_FUNC
-+init__gdb_module (void)
-+{
-+ return PyModule_Create (&python_GdbModuleDef);
-+}
-+#endif
-+
- /* Provide a prototype to silence -Wmissing-prototypes. */
- extern initialize_file_ftype _initialize_python;
-
-@@ -1743,6 +1754,9 @@ message == an error message without a st
- remain alive for the duration of the program's execution, so
- it is not freed after this call. */
- Py_SetProgramName (progname_copy);
-+
-+ /* Define _gdb as a built-in module. */
-+ PyImport_AppendInittab ("_gdb", init__gdb_module);
- #else
- Py_SetProgramName (progname);
- #endif
-@@ -1752,9 +1766,7 @@ message == an error message without a st
- PyEval_InitThreads ();
-
- #ifdef IS_PY3K
-- gdb_module = PyModule_Create (&python_GdbModuleDef);
-- /* Add _gdb module to the list of known built-in modules. */
-- _PyImport_FixupBuiltin (gdb_module, "_gdb");
-+ gdb_module = PyImport_ImportModule ("_gdb");
- #else
- gdb_module = Py_InitModule ("_gdb", python_GdbMethods);
- #endif
diff --git a/devel/xtensa-esp32-elf/pkg-descr b/devel/xtensa-esp32-elf/pkg-descr
deleted file mode 100644
index 637d1475dcea..000000000000
--- a/devel/xtensa-esp32-elf/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-The Espressif ESP32 toolchain to support Arduino and FreeRTOS projects.
-
-This version produces a gcc 5.2.0 based toolchain for use with v3.3
-of the esp-idf.
diff --git a/devel/xtensa-esp32-elf/pkg-plist b/devel/xtensa-esp32-elf/pkg-plist
deleted file mode 100644
index ea32aeacc849..000000000000
--- a/devel/xtensa-esp32-elf/pkg-plist
+++ /dev/null
@@ -1,1555 +0,0 @@
-%%PKGBASE%%/bin/xtensa-esp32-elf-addr2line
-%%PKGBASE%%/bin/xtensa-esp32-elf-ar
-%%PKGBASE%%/bin/xtensa-esp32-elf-as
-%%PKGBASE%%/bin/xtensa-esp32-elf-c++
-%%PKGBASE%%/bin/xtensa-esp32-elf-c++filt
-%%PKGBASE%%/bin/xtensa-esp32-elf-cc
-%%PKGBASE%%/bin/xtensa-esp32-elf-cpp
-%%PKGBASE%%/bin/xtensa-esp32-elf-ct-ng.config
-%%PKGBASE%%/bin/xtensa-esp32-elf-elfedit
-%%PKGBASE%%/bin/xtensa-esp32-elf-g++
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcc
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcc-%%GCCVER%%
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcc-ar
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcc-nm
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcc-ranlib
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcov
-%%PKGBASE%%/bin/xtensa-esp32-elf-gcov-tool
-%%PKGBASE%%/bin/xtensa-esp32-elf-gdb
-%%PKGBASE%%/bin/xtensa-esp32-elf-gprof
-%%PKGBASE%%/bin/xtensa-esp32-elf-ld
-%%PKGBASE%%/bin/xtensa-esp32-elf-ld.bfd
-%%PKGBASE%%/bin/xtensa-esp32-elf-nm
-%%PKGBASE%%/bin/xtensa-esp32-elf-objcopy
-%%PKGBASE%%/bin/xtensa-esp32-elf-objdump
-%%PKGBASE%%/bin/xtensa-esp32-elf-ranlib
-%%PKGBASE%%/bin/xtensa-esp32-elf-readelf
-%%PKGBASE%%/bin/xtensa-esp32-elf-size
-%%PKGBASE%%/bin/xtensa-esp32-elf-strings
-%%PKGBASE%%/bin/xtensa-esp32-elf-strip
-%%PKGBASE%%/include/gdb/jit-reader.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/crtbegin.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/crtend.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/crti.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/crtn.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/crtbegin.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/crtend.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/crti.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/crtn.o
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/libgcc.a
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/esp32-psram/libgcov.a
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include-fixed/README
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include-fixed/limits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include-fixed/syslimits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/float.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/iso646.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdalign.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdarg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdatomic.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdbool.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stddef.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdfix.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdint-gcc.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdint.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/stdnoreturn.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/tgmath.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/unwind.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/include/varargs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/fixinc_list
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/gsyslimits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/include/README
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/include/limits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/macro_list
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/mkheaders.conf
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/libgcc.a
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/libgcov.a
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/gtype.state
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ada/gcc-interface/ada-tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/addresses.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/alias.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/all-tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/alloc-pool.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ansidecl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/asan.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/attribs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/auto-host.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/auto-profile.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/b-header-vars
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/basic-block.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/bb-reorder.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/bitmap.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/builtin-attrs.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/builtin-types.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/builtins.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/bversion.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-family/c-common.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-family/c-common.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-family/c-objc.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-family/c-pragma.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-family/c-pretty-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/c-tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/calls.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ccmp.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfg-flags.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfganal.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgbuild.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgcleanup.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgexpand.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfghooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgloop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgloopmanip.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cfgrtl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cgraph.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/chkp-builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cif-code.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cilk-builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cilk.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cilkplus.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/collect-utils.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/collect2-aix.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/collect2.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/conditions.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/dbxelf.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/elfos.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/initfini-array.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/newlib-stdint.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/xtensa/elf.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/xtensa/xtensa-protos.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/config/xtensa/xtensa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/configargs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/context.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/convert.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/coretypes.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/coverage.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cp/cp-tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cp/cp-tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cp/cxx-pretty-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cp/name-lookup.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cp/type-utils.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cppbuiltin.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cppdefault.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cpplib.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/cselib.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/data-streamer.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dbgcnt.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dbgcnt.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dbxout.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dce.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ddg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/debug.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/defaults.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/df.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dfp.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/diagnostic-color.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/diagnostic-core.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/diagnostic.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/diagnostic.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dojump.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dominance.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/domwalk.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/double-int.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dumpfile.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dwarf2asm.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/dwarf2out.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/emit-rtl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/errors.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/et-forest.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/except.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/explow.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/expmed.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/expr.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/fibonacci_heap.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/file-find.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/filenames.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/fixed-value.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/flag-types.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/flags.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/fold-const.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/function.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcc-plugin.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcc-symtab.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcc.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcov-counter.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcov-io.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcse-common.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gcse.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/generic-match.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gengtype.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/genrtl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gensupport.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ggc-internal.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ggc.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-builder.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-expr.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-fold.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-iterator.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-low.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-match.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-pretty-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-ssa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-streamer.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple-walk.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimple.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimplify-me.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gimplify.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/glimits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graph.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graphds.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graphite-isl-ast-to-gimple.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graphite-poly.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graphite-scop-detection.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/graphite-sese-to-poly.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gsstruct.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gstab.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gsyms.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gsyslimits.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gtm-builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/gtype-desc.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hard-reg-set.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hash-map.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hash-set.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hash-table.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hashtab.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/highlev-plugin-common.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hosthooks-def.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hosthooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hw-doloop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/hwint.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ifcvt.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/inchash.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/incpath.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/input.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-addr.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-codes.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-constants.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-flags.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-modes.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/insn-notes.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/internal-fn.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/internal-fn.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/intl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-chkp.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-icf-gimple.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-icf.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-inline.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-prop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-ref.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-reference.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ipa-utils.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ira-int.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ira.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/is-a.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/java/java-tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/langhooks-def.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/langhooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lcm.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/libfuncs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/libiberty.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/limitx.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/limity.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/line-map.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/loop-unroll.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lower-subreg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lra-int.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lra.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lto-compress.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lto-section-names.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/lto-streamer.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/machmode.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/machmode.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/md5.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/mode-classes.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/objc/objc-tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/obstack.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/omega.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/omp-builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/omp-low.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/optabs.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/optabs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/options.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/opts-diagnostic.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/opts.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/output.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/params.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/params.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/pass-instances.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/pass_manager.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/passes.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/plugin-api.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/plugin-version.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/plugin.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/plugin.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/predict.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/predict.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/prefix.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/pretty-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/print-rtl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/print-tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/profile.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/read-md.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/real.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/realmpfr.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/recog.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/reg-notes.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/regcprop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/regrename.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/regs.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/regset.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/reload.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/resource.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtl-chkp.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtl-error.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtl-iter.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtl.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtl.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtlhash.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/rtlhooks-def.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/safe-ctype.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sanitizer.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sbitmap.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sched-int.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sdbout.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sel-sched-dump.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sel-sched-ir.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sel-sched.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sese.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/shrink-wrap.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/signop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sparseset.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/splay-tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sreal.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ssa-iterators.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/stab.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/statistics.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/stmt.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/stor-layout.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/streamer-hooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/stringpool.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/symbol-summary.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/symtab.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/sync-builtins.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/system.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/target-def.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/target-globals.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/target-hooks-macros.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/target.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/target.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/targhooks.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/timevar.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/timevar.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tm-preds.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tm.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tm_p.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/toplev.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/trans-mem.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-affine.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-browser.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-cfg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-cfgcleanup.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-check.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-chkp.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-chrec.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-core.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-data-ref.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-dfa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-diagnostic.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-dump.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-eh.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-hasher.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-inline.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-into-ssa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-iterator.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-nested.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-object-size.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-outof-ssa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-parloops.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-pass.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-phinodes.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-pretty-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-scalar-evolution.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-address.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-alias.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-coalesce.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-dom.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-live.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-loop-ivopts.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-loop-manip.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-loop-niter.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-loop.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-operands.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-propagate.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-sccvn.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-ter.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-threadedge.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa-threadupdate.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssa.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-ssanames.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-stdarg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-streamer.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree-vectorizer.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/treestruct.def
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tsan.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/tsystem.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/typeclass.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/typed-splay-tree.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/ubsan.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/valtrack.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/value-prof.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/varasm.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/vec.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/version.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/vmsdbg.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/vtable-verify.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/wide-int-print.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/wide-int.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/xcoff.h
-%%PKGBASE%%/lib/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/include/xcoffout.h
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.x
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xbn
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xc
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xd
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdc
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xdw
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xn
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xr
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xs
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xsc
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xsw
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xu
-%%PKGBASE%%/lib/ldscripts/elf32xtensa.xw
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/cc1
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/cc1plus
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/collect2
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/fixinc.sh
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/fixincl
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/mkheaders
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/install-tools/mkinstalldirs
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/liblto_plugin.so
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/liblto_plugin.so.0
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/lto-wrapper
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/lto1
-%%PKGBASE%%/libexec/gcc/xtensa-esp32-elf/%%GCCVER%%/plugin/gengtype
-%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/__init__.py
-%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/__init__.py
-%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/printers.py
-%%PKGBASE%%/share/gcc-%%GCCVER%%/python/libstdcxx/v6/xmethods.py
-%%PKGBASE%%/share/gdb/gdbinit
-%%PKGBASE%%/share/gdb/python/gdb/FrameDecorator.py
-%%PKGBASE%%/share/gdb/python/gdb/FrameIterator.py
-%%PKGBASE%%/share/gdb/python/gdb/__init__.py
-%%PKGBASE%%/share/gdb/python/gdb/command/__init__.py
-%%PKGBASE%%/share/gdb/python/gdb/command/explore.py
-%%PKGBASE%%/share/gdb/python/gdb/command/frame_filters.py
-%%PKGBASE%%/share/gdb/python/gdb/command/pretty_printers.py
-%%PKGBASE%%/share/gdb/python/gdb/command/prompt.py
-%%PKGBASE%%/share/gdb/python/gdb/command/type_printers.py
-%%PKGBASE%%/share/gdb/python/gdb/command/unwinders.py
-%%PKGBASE%%/share/gdb/python/gdb/command/xmethods.py
-%%PKGBASE%%/share/gdb/python/gdb/frames.py
-%%PKGBASE%%/share/gdb/python/gdb/function/__init__.py
-%%PKGBASE%%/share/gdb/python/gdb/function/caller_is.py
-%%PKGBASE%%/share/gdb/python/gdb/function/strfns.py
-%%PKGBASE%%/share/gdb/python/gdb/printer/__init__.py
-%%PKGBASE%%/share/gdb/python/gdb/printer/bound_registers.py
-%%PKGBASE%%/share/gdb/python/gdb/printing.py
-%%PKGBASE%%/share/gdb/python/gdb/prompt.py
-%%PKGBASE%%/share/gdb/python/gdb/types.py
-%%PKGBASE%%/share/gdb/python/gdb/unwinder.py
-%%PKGBASE%%/share/gdb/python/gdb/xmethod.py
-%%PKGBASE%%/share/gdb/syscalls/aarch64-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/amd64-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/arm-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/gdb-syscalls.dtd
-%%PKGBASE%%/share/gdb/syscalls/i386-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/mips-n32-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/mips-n64-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/mips-o32-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/ppc-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/ppc64-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/s390-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/s390x-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/sparc-linux.xml
-%%PKGBASE%%/share/gdb/syscalls/sparc64-linux.xml
-%%PKGBASE%%/share/gdb/system-gdbinit/elinos.py
-%%PKGBASE%%/share/gdb/system-gdbinit/wrs-linux.py
-%%PKGBASE%%/xtensa-esp32-elf/bin/ar
-%%PKGBASE%%/xtensa-esp32-elf/bin/as
-%%PKGBASE%%/xtensa-esp32-elf/bin/ld
-%%PKGBASE%%/xtensa-esp32-elf/bin/ld.bfd
-%%PKGBASE%%/xtensa-esp32-elf/bin/nm
-%%PKGBASE%%/xtensa-esp32-elf/bin/objcopy
-%%PKGBASE%%/xtensa-esp32-elf/bin/objdump
-%%PKGBASE%%/xtensa-esp32-elf/bin/ranlib
-%%PKGBASE%%/xtensa-esp32-elf/bin/strip
-%%PKGBASE%%/xtensa-esp32-elf/include/_ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/include/_syslist.h
-%%PKGBASE%%/xtensa-esp32-elf/include/alloca.h
-%%PKGBASE%%/xtensa-esp32-elf/include/ar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/argz.h
-%%PKGBASE%%/xtensa-esp32-elf/include/assert.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/algorithm
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/array
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/atomic
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/auto_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/backward_warning.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/binders.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/hash_fun.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/hash_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/hash_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/hashtable.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/backward/strstream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/algorithmfwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/alloc_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/allocated_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/atomic_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/atomic_futex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/atomic_lockfree_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/basic_ios.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/basic_ios.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/basic_string.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/basic_string.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/boost_concept_check.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/c++0x_warning.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/c++14_warning.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/char_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/codecvt.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/concept_check.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/cpp_type_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/cxxabi_forced.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/deque.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/enable_special_members.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/exception_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/exception_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/forward_list.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/forward_list.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/fstream.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/functexcept.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/functional_hash.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/gslice.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/gslice_array.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/hash_bytes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/hashtable.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/hashtable_policy.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/indirect_array.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/ios_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/istream.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/list.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_classes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_classes.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_conv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_facets.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_facets.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_facets_nonio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/locale_facets_nonio.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/localefwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/mask_array.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/memoryfwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/move.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/nested_exception.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/ostream.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/ostream_insert.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/parse_numbers.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/postypes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/predefined_ops.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/ptr_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/random.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/range_access.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_automaton.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_automaton.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_compiler.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_compiler.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_constants.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_error.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_executor.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_executor.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_scanner.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/regex_scanner.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/shared_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/shared_ptr_atomic.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/shared_ptr_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/slice_array.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/sstream.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_algo.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_algobase.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_bvector.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_construct.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_deque.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_function.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_heap.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_iterator_base_funcs.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_iterator_base_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_list.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_multimap.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_multiset.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_numeric.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_pair.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_queue.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_raw_storage_iter.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_relops.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_set.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_stack.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_tempbuf.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_tree.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_uninitialized.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stl_vector.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stream_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/streambuf.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/streambuf_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/stringfwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/unique_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/unordered_map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/unordered_set.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/uses_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/valarray_after.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/valarray_array.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/valarray_array.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/valarray_before.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bits/vector.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/bitset
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cassert
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ccomplex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cctype
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cerrno
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cfenv
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cfloat
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/chrono
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cinttypes
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ciso646
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/climits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/clocale
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cmath
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/codecvt
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/complex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/complex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/condition_variable
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/csetjmp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/csignal
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdalign
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdarg
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdbool
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstddef
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdint
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdio
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstdlib
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cstring
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ctgmath
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ctime
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cwchar
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cwctype
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/cxxabi.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/array
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/bitset
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/debug.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/deque
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/formatter.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/forward_list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/functions.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/macros.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/multimap.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/multiset.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_container.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_iterator.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_local_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_local_iterator.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_sequence.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_sequence.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_unordered_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_unordered_container.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/safe_unordered_container.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/set.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/string
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/unordered_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/unordered_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/debug/vector
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/decimal/decimal
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/decimal/decimal.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/deque
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/exception
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/algorithm
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/any
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/chrono
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/functional
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/optional
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/ratio
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/string_view
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/string_view.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/system_error
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/tuple
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/experimental/type_traits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/algorithm
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/aligned_buffer.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/alloc_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/array_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/atomicity.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/bitmap_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/cast.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/cmath
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/codecvt_specializations.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/concurrence.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/debug_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/enc_filebuf.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/extptr_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/functional
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/hash_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/hash_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/iterator
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/malloc_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/memory
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/mt_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/new_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/numeric
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/numeric_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/assoc_container.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/bin_search_tree_/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/branch_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/branch_policy/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/cond_dealtor.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/container_base_dispatch.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/debug_map_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/ov_tree_map_/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/node.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rb_tree_map_/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/node.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/splay_tree_/traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/standard_policies.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/tree_trace_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/type_utils.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/types_traits.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/exception.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/hash_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/list_update_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/priority_queue.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/tag_and_trait.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/tree_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pb_ds/trie_policy.hpp
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pod_char_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pointer.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/pool_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/random
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/random.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/rb_tree
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/rc_string_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/rope
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/ropeimpl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/slist
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/sso_string_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/stdio_filebuf.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/stdio_sync_filebuf.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/string_conversions.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/throw_allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/type_traits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/typelist.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/vstring.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/vstring.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/vstring_fwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ext/vstring_util.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/fenv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/forward_list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/fstream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/functional
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/future
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/initializer_list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/iomanip
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ios
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/iosfwd
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/iostream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/istream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/iterator
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/limits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/locale
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/memory
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/mutex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/new
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/numeric
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ostream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/algo.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/algobase.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/algorithm
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/algorithmfwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/balanced_quicksort.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/basic_iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/checkers.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/compatibility.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/compiletime_settings.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/equally_split.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/features.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/find.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/find_selectors.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/for_each.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/for_each_selectors.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/iterator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/list_partition.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/losertree.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/merge.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/multiseq_selection.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/multiway_merge.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/multiway_mergesort.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/numeric
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/numericfwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/omp_loop.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/omp_loop_static.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/par_loop.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/parallel.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/partial_sum.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/partition.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/queue.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/quicksort.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/random_number.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/random_shuffle.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/search.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/set_operations.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/settings.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/sort.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/tags.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/unique_copy.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/parallel/workstealing.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/array
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/bitset
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/deque
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/forward_list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_algos.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_container_size.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_hash_func.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_hashtable_size.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_list_to_slist.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_list_to_vector.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_map_to_unordered_map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_node.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_state.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_trace.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_vector_size.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/impl/profiler_vector_to_list.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/iterator_tracker.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/list
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/multimap.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/multiset.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/ordered_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/set.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/unordered_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/unordered_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/unordered_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/profile/vector
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/queue
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/random
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/ratio
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/regex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/scoped_allocator
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/shared_mutex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/sstream
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/stack
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/stdexcept
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/streambuf
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/string
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/system_error
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tgmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/thread
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/array
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/bessel_function.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/beta_function.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/ccomplex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cctype
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cfenv
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cfloat
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cinttypes
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/climits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cmath
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/complex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/complex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cstdarg
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cstdbool
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cstdint
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cstdio
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cstdlib
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/ctgmath
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/ctime
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/ctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cwchar
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/cwctype
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/ell_integral.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/exp_integral.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/fenv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/float.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/functional
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/functional_hash.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/gamma.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/hashtable.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/hashtable_policy.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/hypergeometric.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/inttypes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/legendre_function.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/limits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/math.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/memory
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/modified_bessel_func.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/poly_hermite.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/poly_laguerre.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/random
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/random.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/regex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/riemann_zeta.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/shared_ptr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/special_function_util.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/stdarg.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/stdbool.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/stdint.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/tgmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/tuple
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/type_traits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/unordered_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/unordered_map.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/unordered_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/unordered_set.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/utility
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/wchar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr1/wctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/bool_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/bool_set.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/dynamic_bitset
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/dynamic_bitset.tcc
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/ratio
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tr2/type_traits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/tuple
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/type_traits
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/typeindex
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/typeinfo
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/unordered_map
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/unordered_set
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/utility
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/valarray
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/vector
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/atomic_word.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/basic_file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/c++allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/c++config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/c++io.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/c++locale.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/cpu_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/ctype_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/ctype_inline.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/cxxabi_tweaks.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/error_constants.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/extc++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/gthr-default.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/gthr-posix.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/gthr-single.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/gthr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/messages_members.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/opt_random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/os_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/stdc++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/stdtr1c++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/bits/time_members.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/atomic_word.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/basic_file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/c++allocator.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/c++config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/c++io.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/c++locale.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/cpu_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/ctype_base.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/ctype_inline.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/cxxabi_tweaks.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/error_constants.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/extc++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/gthr-default.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/gthr-posix.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/gthr-single.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/gthr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/messages_members.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/opt_random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/os_defines.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/stdc++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/stdtr1c++.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/bits/time_members.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/esp32-psram/ext/opt_random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/c++/%%GCCVER%%/xtensa-esp32-elf/ext/opt_random.h
-%%PKGBASE%%/xtensa-esp32-elf/include/complex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/ctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/envlock.h
-%%PKGBASE%%/xtensa-esp32-elf/include/envz.h
-%%PKGBASE%%/xtensa-esp32-elf/include/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/include/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/fenv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/fnmatch.h
-%%PKGBASE%%/xtensa-esp32-elf/include/getopt.h
-%%PKGBASE%%/xtensa-esp32-elf/include/glob.h
-%%PKGBASE%%/xtensa-esp32-elf/include/grp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/iconv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/_ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/_syslist.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/alloca.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/ar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/argz.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/assert.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/complex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/ctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/envlock.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/envz.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/fenv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/fnmatch.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/getopt.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/glob.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/grp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/iconv.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/inttypes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/langinfo.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/libgen.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/limits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/locale.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/_default_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/endian.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/param.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/setjmp-dj.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/machine/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/math.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/newlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/paths.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/pthread.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/pwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/regdef.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/regex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/rpc/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/rpc/xdr.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/search.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/spawn.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/stdatomic.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/stdint.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/stdio_ext.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/string.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/strings.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/_default_fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/_intsup.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/cdefs.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/custom_file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/dir.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/features.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/iconvnls.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/lock.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/param.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/queue.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/resource.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/stat.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/string.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/syslimits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/timeb.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/times.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/sys/wait.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/tar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/tgmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/unctrl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/utmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/wchar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/wctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/wordexp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/include/xtensa/config/core-isa.h
-%%PKGBASE%%/xtensa-esp32-elf/include/inttypes.h
-%%PKGBASE%%/xtensa-esp32-elf/include/langinfo.h
-%%PKGBASE%%/xtensa-esp32-elf/include/libgen.h
-%%PKGBASE%%/xtensa-esp32-elf/include/limits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/locale.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/_default_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/endian.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/param.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/setjmp-dj.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/machine/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/include/math.h
-%%PKGBASE%%/xtensa-esp32-elf/include/newlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/paths.h
-%%PKGBASE%%/xtensa-esp32-elf/include/pthread.h
-%%PKGBASE%%/xtensa-esp32-elf/include/pwd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/regdef.h
-%%PKGBASE%%/xtensa-esp32-elf/include/regex.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/include/search.h
-%%PKGBASE%%/xtensa-esp32-elf/include/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/include/spawn.h
-%%PKGBASE%%/xtensa-esp32-elf/include/stdatomic.h
-%%PKGBASE%%/xtensa-esp32-elf/include/stdint.h
-%%PKGBASE%%/xtensa-esp32-elf/include/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/stdio_ext.h
-%%PKGBASE%%/xtensa-esp32-elf/include/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/include/string.h
-%%PKGBASE%%/xtensa-esp32-elf/include/strings.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/_default_fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/_intsup.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/cdefs.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/config.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/custom_file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/dir.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/features.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/file.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/iconvnls.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/lock.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/param.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/queue.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/resource.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/stat.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/string.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/syslimits.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/timeb.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/times.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/types.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/include/sys/wait.h
-%%PKGBASE%%/xtensa-esp32-elf/include/tar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/include/tgmath.h
-%%PKGBASE%%/xtensa-esp32-elf/include/time.h
-%%PKGBASE%%/xtensa-esp32-elf/include/unctrl.h
-%%PKGBASE%%/xtensa-esp32-elf/include/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/include/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/include/utmp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/wchar.h
-%%PKGBASE%%/xtensa-esp32-elf/include/wctype.h
-%%PKGBASE%%/xtensa-esp32-elf/include/wordexp.h
-%%PKGBASE%%/xtensa-esp32-elf/include/xtensa/config/core-isa.h
-%%PKGBASE%%/xtensa-esp32-elf/lib
-%%PKGBASE%%/xtensa-esp32-elf/lib32
-%%PKGBASE%%/xtensa-esp32-elf/lib64
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/crt0.o
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/crt0.o
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libc.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libg.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libm.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libstdc++.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libstdc++.a-gdb.py
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/esp32-psram/libsupc++.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libc.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libg.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libm.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libstdc++.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libstdc++.a-gdb.py
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib/libsupc++.a
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib32
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/lib64
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/_ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/_syslist.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/alloca.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/ar.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/argz.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/assert.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/complex.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/config.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/ctype.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/envlock.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/envz.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/fenv.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/fnmatch.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/getopt.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/glob.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/grp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/iconv.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/inttypes.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/langinfo.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/libgen.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/limits.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/locale.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/_default_types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/ansi.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/endian.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/fastmath.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/ieeefp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/param.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/setjmp-dj.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/time.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/machine/types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/malloc.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/math.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/newlib.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/paths.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/pthread.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/pwd.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/regdef.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/regex.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/rpc/types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/rpc/xdr.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/search.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/setjmp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/spawn.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/stdatomic.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/stdint.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/stdio_ext.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/stdlib.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/string.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/strings.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/_default_fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/_intsup.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/_types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/cdefs.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/config.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/custom_file.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/dir.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/dirent.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/errno.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/fcntl.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/features.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/file.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/iconvnls.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/lock.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/param.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/queue.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/reent.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/resource.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/sched.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/signal.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/stat.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/stdio.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/string.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/syslimits.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/time.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/timeb.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/times.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/types.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/sys/wait.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/tar.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/termios.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/tgmath.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/time.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/unctrl.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/unistd.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/utime.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/utmp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/wchar.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/wctype.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/wordexp.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/include/xtensa/config/core-isa.h
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/lib32
-%%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/lib64
-@dir %%PKGBASE%%/xtensa-esp32-elf/debug-root
-@dir %%PKGBASE%%/xtensa-esp32-elf/include/bits
-@dir %%PKGBASE%%/xtensa-esp32-elf/include/rpc
-@dir %%PKGBASE%%/xtensa-esp32-elf/sysroot/usr/lib