pkgsrc-Changes archive

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

CVS commit: pkgsrc/cross/xtensa-esp32-elf-gcc



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sun Mar 24 11:58:05 UTC 2019

Added Files:
        pkgsrc/cross/xtensa-esp32-elf-gcc: DESCR Makefile PLIST distinfo
        pkgsrc/cross/xtensa-esp32-elf-gcc/patches: patch-configure
            patch-contrib_download__prerequisites patch-gcc_system.h

Log Message:
xtensa-esp32-elf-gcc: import xtensa-esp32-elf-gcc-8.2.0

Cross GCC for Espressif ESP32 bare metal environment.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/cross/xtensa-esp32-elf-gcc/DESCR \
    pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile \
    pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST \
    pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-configure \
    pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-contrib_download__prerequisites \
    pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-gcc_system.h

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

Added files:

Index: pkgsrc/cross/xtensa-esp32-elf-gcc/DESCR
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/DESCR:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/DESCR     Sun Mar 24 11:58:04 2019
@@ -0,0 +1 @@
+Cross GCC for Espressif ESP32 bare metal environment.
Index: pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile  Sun Mar 24 11:58:04 2019
@@ -0,0 +1,76 @@
+# $NetBSD: Makefile,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+# We could use the upstream GCC distfile, but Espressif has important vendor
+# patches in their branch and it seems not worth the maintenance overhead to
+# extract them and put them in pkgsrc.
+# See: https://github.com/espressif/gcc/commits/esp32-2018r1_gcc-8_2_0
+#DISTNAME=             gcc-8.3.0
+#MASTER_SITES=         ${MASTER_SITE_GNU:=gcc/gcc-${PKGVERSION_NOREV}/}
+#EXTRACT_SUFX=         .tar.xz
+
+DISTNAME=              espressif-gcc-8.2.0
+PKGNAME=               ${DISTNAME:C/.*gcc/xtensa-esp32-elf-gcc/}
+CATEGORIES=            cross
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=espressif/}
+GITHUB_PROJECT=                gcc
+GITHUB_TAG=            bae67e9ef3c3dea93a7cd169a475e05c8013f00b
+# Espressif overlays
+DISTFILES=             ${DEFAULT_DISTFILES}
+DISTFILES+=            crosstool-ng-esp32-2018r1.tar.gz
+SITES.crosstool-ng-esp32-2018r1.tar.gz=        -https://github.com/espressif/crosstool-NG/archive/0a6745d4ed60aaa41a812ecf777ef062e2c76354.tar.gz
+# Custom ESP32 newlib
+DISTFILES+=            newlib-${NEWLIBVER}.tar.gz
+NEWLIBVER=             esp32-2018r1_newlib-2_2_0
+SITES.newlib-${NEWLIBVER}.tar.gz=      -https://github.com/espressif/newlib-esp32/archive/fdbb7b81e963283abb4915e2da873fc248ecd47a.tar.gz
+
+MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/espressif/gcc
+COMMENT=               Cross GCC for Espressif ESP32 bare metal environment
+LICENSE=               gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
+
+DEPENDS+=      xtensa-esp32-elf-binutils-[0-9]*:../../cross/xtensa-esp32-elf-binutils
+
+GNU_CONFIGURE=         yes
+INFO_FILES=            yes
+USE_LANGUAGES+=                c c++
+USE_TOOLS+=            bash gmake makeinfo perl
+
+# for http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33549
+# use makeinfo from pkgsrc/devel/gtexinfo.
+TOOL_DEPENDS+=         gtexinfo>=5.1:../../devel/gtexinfo
+_TOOLS_USE_PKGSRC.makeinfo=yes
+
+OBJDIR=                        ../build
+CONFIGURE_DIRS=                ${OBJDIR}
+CONFIGURE_SCRIPT=      ${WRKSRC}/configure
+CONFIG_SHELL=          ${TOOLS_PATH.bash}
+WRAPPER_SHELL=         ${TOOLS_PATH.bash}
+GNU_CONFIGURE_PREFIX=  ${PREFIX}/xtensa-esp32-elf
+
+CONFIGURE_ARGS+=       --target=xtensa-esp32-elf
+CONFIGURE_ARGS+=       --enable-languages=c,c++
+CONFIGURE_ARGS+=       --with-newlib
+CONFIGURE_ARGS+=       --enable-multiarch
+CONFIGURE_ARGS+=       --disable-nls
+CONFIGURE_ARGS+=       --disable-libstdcxx-pch
+CONFIGURE_ARGS+=       --disable-libstdcxx-verbose
+CONFIGURE_ARGS+=       --disable-__cxa_atexit
+CONFIGURE_ARGS+=       --enable-cxx-flags="-fno-rtti -ffunction-sections"
+CONFIGURE_ARGS+=       --enable-target-optspace
+CONFIGURE_ARGS+=       --disable-libquadmath
+CONFIGURE_ARGS+=       --disable-libssp
+CONFIGURE_ARGS+=       --without-long-double-128
+CONFIGURE_ARGS+=       --enable-gcov-custom-rtio
+
+post-extract:
+       ${CP} -r ${WRKDIR}/crosstool-NG*/overlays/xtensa_esp32/gcc/. ${WRKSRC}/.
+       ${LN} -s ${WRKDIR}/newlib-*/newlib ${WRKSRC}/newlib
+       ${LN} -s ${WRKDIR}/newlib-*/libgloss ${WRKSRC}/libgloss
+
+pre-configure:
+       ${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR}
+
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../math/mpfr/buildlink3.mk"
+.include "../../math/mpcomplex/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST     Sun Mar 24 11:58:04 2019
@@ -0,0 +1,1378 @@
+@comment $NetBSD: PLIST,v 1.1 2019/03/24 11:58:04 tnn Exp $
+xtensa-esp32-elf/bin/xtensa-esp32-elf-c++
+xtensa-esp32-elf/bin/xtensa-esp32-elf-cpp
+xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
+xtensa-esp32-elf/bin/${PKGNAME}
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-nm
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov-dump
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov-tool
+xtensa-esp32-elf/info/cpp.info
+xtensa-esp32-elf/info/cppinternals.info
+xtensa-esp32-elf/info/gcc.info
+xtensa-esp32-elf/info/gccinstall.info
+xtensa-esp32-elf/info/gccint.info
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/libgcov.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/README
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/limits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/syslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/float.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/gcov.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/iso646.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdalign.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdarg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdatomic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdbool.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stddef.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdfix.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdint-gcc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdint.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdnoreturn.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/tgmath.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/unwind.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/varargs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/fixinc_list
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/gsyslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/include/README
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/include/limits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/macro_list
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/mkheaders.conf
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/libgcov.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/gtype.state
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ada/gcc-interface/ada-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/addresses.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/alias.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/all-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/alloc-pool.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ansidecl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/asan.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/attribs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/auto-host.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/auto-profile.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/b-header-vars
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/backend.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/basic-block.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bb-reorder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bitmap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/brig-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtin-attrs.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtin-types.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtins.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bversion.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-common.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-objc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-pragma.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/calls.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ccmp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfg-flags.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfganal.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgbuild.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgcleanup.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgexpand.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfghooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgloop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgloopmanip.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgrtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cgraph.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/chkp-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cif-code.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect-utils.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect2-aix.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect2.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/color-macros.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/conditions.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/dbxelf.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/elfos.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/initfini-array.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/newlib-stdint.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/elf.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa-protos.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/configargs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/context.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/convert.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/coretypes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/coverage.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cp-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cp-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cxx-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/name-lookup.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/operators.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/type-utils.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cppbuiltin.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cppdefault.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cpplib.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cselib.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/data-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbgcnt.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbgcnt.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbxout.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dce.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ddg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/debug.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/defaults.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/df.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dfp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic-color.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic-core.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dojump.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dominance.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/domwalk.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/double-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dumpfile.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dwarf2asm.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dwarf2out.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/edit-context.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/emit-rtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/errors.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/et-forest.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/except.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/explow.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/expmed.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/expr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fibonacci_heap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/file-find.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/file-prefix-map.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/filenames.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fixed-value.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/flag-types.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/flags.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fold-const-call.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fold-const.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/function.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-plugin.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-rich-location.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-symtab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcov-counter.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcov-io.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcse-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcse.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/generic-match.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gengtype.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/genrtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gensupport.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ggc-internal.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ggc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-expr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-fold.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-iterator.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-low.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-match.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-predict.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa-evrp-analyze.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa-warn-restrict.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-walk.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimplify-me.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimplify.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/glimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graph.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graphds.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graphite.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsstruct.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gstab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsyms.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsyslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gtm-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gtype-desc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hard-reg-set.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-map-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-map.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-set.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-table.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hashtab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/highlev-plugin-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hosthooks-def.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hosthooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hsa-brig-format.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hsa-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hsa-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hw-doloop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hwint.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ifcvt.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/inchash.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/incpath.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/input.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-addr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-codes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-constants.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-flags.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-modes-inline.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-modes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/insn-notes.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/int-vector-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/internal-fn.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/internal-fn.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/intl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-chkp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-fnsummary.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-icf-gimple.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-icf.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-inline.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-param-manipulation.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-predicate.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-prop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-ref.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-reference.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ipa-utils.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ira-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ira.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/is-a.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/langhooks-def.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/langhooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lcm.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/libfuncs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/libiberty.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/limitx.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/limity.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/line-map.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/loop-unroll.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lower-subreg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lra-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lra.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lto-compress.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lto-section-names.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/lto-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/machmode.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/machmode.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/md5.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/mem-stats-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/mem-stats.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/memmodel.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/memory-block.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/mode-classes.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/objc/objc-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/obstack.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-expand.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-general.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-grid.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-low.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-offload.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/omp-simd-clone.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/optabs-libfuncs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/optabs-query.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/optabs-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/optabs.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/optabs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/options.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/opts-diagnostic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/opts.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/output.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params-enum.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params-list.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params-options.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/params.list
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/pass-instances.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/pass_manager.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/passes.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/plugin-api.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/plugin-version.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/plugin.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/plugin.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/poly-int-types.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/poly-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/predict.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/predict.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/prefix.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/print-rtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/print-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/profile-count.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/profile.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/read-md.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/read-rtl-function.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/real.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/realmpfr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/recog.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/reg-notes.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/regcprop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/regrename.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/regs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/regset.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/reload.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/resource.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtl-chkp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtl-error.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtl-iter.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtl.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtlhash.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtlhooks-def.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/rtx-vector-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/run-rtl-passes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/safe-ctype.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sanitizer.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sbitmap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sched-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sel-sched-dump.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sel-sched-ir.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sel-sched.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/selftest-diagnostic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/selftest-rtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/selftest.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sese.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/shrink-wrap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/signop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sparseset.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/spellcheck-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/spellcheck.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/splay-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sreal.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ssa-iterators.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/stab.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/statistics.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/stmt.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/stor-layout.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/streamer-hooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/stringpool.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/substring-locations.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/symbol-summary.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/symtab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/sync-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/system.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target-def.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target-globals.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target-hooks-macros.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target-insns.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/target.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/targhooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/timevar.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/timevar.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tm-preds.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tm.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tm_p.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/toplev.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tracer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/trans-mem.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-affine.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-cfg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-cfgcleanup.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-check.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-chkp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-chrec.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-core.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-data-ref.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-dfa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-diagnostic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-dump.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-eh.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-hash-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-hasher.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-if-conv.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-inline.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-into-ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-iterator.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-nested.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-object-size.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-outof-ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-parloops.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-pass.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-phinodes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-scalar-evolution.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-address.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-alias.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-ccp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-coalesce.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-dce.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-dom.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-live.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-loop-ivopts.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-loop-manip.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-loop-niter.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-loop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-operands.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-propagate.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-sccvn.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-scopedtables.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-strlen.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-ter.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-threadedge.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa-threadupdate.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-ssanames.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-stdarg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-vector-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-vectorizer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree-vrp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/treestruct.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tsan.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/tsystem.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/typeclass.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/typed-splay-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ubsan.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/valtrack.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/value-prof.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/varasm.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vec-perm-indices.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vec.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vector-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/version.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vmsdbg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vr-values.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/vtable-verify.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/wide-int-bitmask.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/wide-int-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/wide-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/xcoff.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/xcoffout.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/libcc1plugin.la
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/libcp1plugin.la
+xtensa-esp32-elf/lib/libcc1.la
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/cc1
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/cc1plus
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/collect2
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/fixinc.sh
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/fixincl
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/mkheaders
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/mkinstalldirs
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/liblto_plugin.la
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/lto-wrapper
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/lto1
+xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/gengtype
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-cpp.1
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-g++.1
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-gcc.1
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-gcov-dump.1
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-gcov-tool.1
+xtensa-esp32-elf/man/man1/xtensa-esp32-elf-gcov.1
+xtensa-esp32-elf/man/man7/fsf-funding.7
+xtensa-esp32-elf/man/man7/gfdl.7
+xtensa-esp32-elf/man/man7/gpl.7
+xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/__init__.py
+xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/__init__.py
+xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/printers.py
+xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/xmethods.py
+xtensa-esp32-elf/xtensa-esp32-elf/include/_ansi.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/_syslist.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/alloca.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/ar.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/argz.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/assert.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/algorithm
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/any
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/array
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/atomic
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/auto_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/backward_warning.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/binders.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/hash_fun.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/hash_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/hash_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/hashtable.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/backward/strstream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/algorithmfwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/alloc_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/allocated_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/atomic_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/atomic_futex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/atomic_lockfree_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/basic_ios.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/basic_ios.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/basic_string.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/basic_string.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/boost_concept_check.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/c++0x_warning.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/char_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/codecvt.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/concept_check.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/cpp_type_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/cxxabi_forced.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/cxxabi_init_exception.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/deque.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/enable_special_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/exception.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/exception_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/exception_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/forward_list.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/forward_list.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/fs_dir.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/fs_fwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/fs_ops.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/fs_path.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/fstream.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/functexcept.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/functional_hash.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/gslice.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/gslice_array.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/hash_bytes.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/hashtable.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/hashtable_policy.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/indirect_array.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/invoke.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/ios_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/istream.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/list.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_classes.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_classes.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_conv.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_facets.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_facets.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_facets_nonio.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/locale_facets_nonio.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/localefwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/mask_array.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/memoryfwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/move.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/nested_exception.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/node_handle.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/ostream.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/ostream_insert.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/parse_numbers.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/postypes.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/predefined_ops.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/ptr_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/quoted_string.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/random.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/range_access.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/refwrap.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_automaton.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_automaton.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_compiler.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_compiler.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_constants.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_error.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_executor.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_executor.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_scanner.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/regex_scanner.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/shared_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/shared_ptr_atomic.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/shared_ptr_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/slice_array.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/specfun.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/sstream.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/std_abs.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/std_function.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/std_mutex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_algo.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_algobase.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_bvector.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_construct.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_deque.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_function.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_heap.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_iterator_base_funcs.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_iterator_base_types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_list.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_multimap.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_multiset.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_numeric.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_pair.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_queue.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_raw_storage_iter.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_relops.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_set.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_stack.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_tempbuf.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_tree.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_uninitialized.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stl_vector.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stream_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/streambuf.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/streambuf_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/string_view.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/stringfwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/uniform_int_dist.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/unique_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/unordered_map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/unordered_set.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/uses_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/valarray_after.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/valarray_array.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/valarray_array.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/valarray_before.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bits/vector.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/bitset
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cassert
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ccomplex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cctype
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cerrno
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cfenv
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cfloat
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/charconv
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/chrono
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cinttypes
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ciso646
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/climits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/clocale
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cmath
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/codecvt
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/complex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/complex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/condition_variable
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/csetjmp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/csignal
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdalign
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdarg
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdbool
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstddef
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdint
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdio
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstdlib
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cstring
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ctgmath
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ctime
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cuchar
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cwchar
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cwctype
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/cxxabi.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/array
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/assertions.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/bitset
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/debug.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/deque
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/formatter.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/forward_list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/functions.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/helper_functions.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/macros.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/multimap.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/multiset.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_container.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_iterator.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_local_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_local_iterator.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_sequence.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_sequence.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_unordered_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_unordered_container.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/safe_unordered_container.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/set.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/stl_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/string
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/unordered_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/unordered_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/debug/vector
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/decimal/decimal
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/decimal/decimal.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/deque
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/exception
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/algorithm
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/any
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/array
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/bits/erase_if.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/bits/lfts_config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/bits/shared_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/bits/string_view.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/chrono
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/deque
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/forward_list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/functional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/iterator
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/memory
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/memory_resource
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/numeric
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/optional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/propagate_const
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/random
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/ratio
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/regex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/source_location
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/string
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/string_view
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/system_error
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/tuple
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/type_traits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/unordered_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/unordered_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/utility
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/experimental/vector
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/algorithm
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/aligned_buffer.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/alloc_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/array_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/atomicity.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/bitmap_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/cast.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/cmath
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/codecvt_specializations.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/concurrence.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/debug_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/enc_filebuf.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/extptr_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/functional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/hash_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/hash_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/iterator
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/malloc_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/memory
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/mt_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/new_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/numeric
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/numeric_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/assoc_container.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/branch_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cond_dealtor.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/container_base_dispatch.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/debug_map_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/node.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/node.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/standard_policies.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_trace_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/type_utils.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/types_traits.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/exception.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/hash_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/list_update_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/priority_queue.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/tag_and_trait.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/tree_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pb_ds/trie_policy.hpp
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pod_char_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pointer.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/pool_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/random
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/random.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/rb_tree
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/rc_string_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/rope
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/ropeimpl.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/slist
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/sso_string_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/stdio_filebuf.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/stdio_sync_filebuf.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/string_conversions.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/throw_allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/type_traits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/typelist.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/vstring.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/vstring.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/vstring_fwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ext/vstring_util.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/fenv.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/filesystem
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/forward_list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/fstream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/functional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/future
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/initializer_list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/iomanip
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ios
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/iosfwd
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/iostream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/istream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/iterator
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/limits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/locale
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/math.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/memory
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/mutex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/new
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/numeric
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/optional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ostream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/algo.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/algobase.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/algorithm
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/algorithmfwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/balanced_quicksort.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/basic_iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/checkers.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/compatibility.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/compiletime_settings.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/equally_split.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/features.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/find.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/find_selectors.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/for_each.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/for_each_selectors.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/iterator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/list_partition.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/losertree.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/merge.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/multiseq_selection.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/multiway_merge.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/multiway_mergesort.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/numeric
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/numericfwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/omp_loop.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/omp_loop_static.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/par_loop.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/parallel.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/partial_sum.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/partition.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/queue.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/quicksort.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/random_number.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/random_shuffle.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/search.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/set_operations.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/settings.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/sort.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/tags.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/unique_copy.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/parallel/workstealing.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/array
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/bitset
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/deque
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/forward_list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_algos.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_container_size.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_hash_func.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_hashtable_size.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_list_to_slist.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_list_to_vector.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_map_to_unordered_map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_node.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_state.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_trace.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_vector_size.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/impl/profiler_vector_to_list.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/iterator_tracker.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/list
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/multimap.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/multiset.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/ordered_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/set.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/unordered_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/unordered_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/unordered_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/profile/vector
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/queue
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/random
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/ratio
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/regex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/scoped_allocator
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/shared_mutex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/sstream
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/stack
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/stdexcept
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/stdlib.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/streambuf
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/string
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/string_view
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/system_error
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tgmath.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/thread
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/array
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/bessel_function.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/beta_function.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/ccomplex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cctype
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cfenv
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cfloat
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cinttypes
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/climits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cmath
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/complex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/complex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cstdarg
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cstdbool
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cstdint
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cstdio
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cstdlib
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/ctgmath
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/ctime
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/ctype.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cwchar
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/cwctype
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/ell_integral.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/exp_integral.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/fenv.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/float.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/functional
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/functional_hash.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/gamma.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/hashtable.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/hashtable_policy.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/hypergeometric.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/inttypes.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/legendre_function.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/limits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/math.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/memory
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/modified_bessel_func.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/poly_hermite.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/poly_laguerre.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/random
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/random.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/regex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/riemann_zeta.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/shared_ptr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/special_function_util.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/stdarg.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/stdbool.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/stdint.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/stdio.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/stdlib.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/tgmath.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/tuple
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/type_traits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/unordered_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/unordered_map.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/unordered_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/unordered_set.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/utility
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/wchar.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr1/wctype.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/bool_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/bool_set.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/dynamic_bitset
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/dynamic_bitset.tcc
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/ratio
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tr2/type_traits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/tuple
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/type_traits
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/typeindex
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/typeinfo
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/unordered_map
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/unordered_set
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/utility
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/valarray
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/variant
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/vector
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/atomic_word.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/basic_file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/c++allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/c++config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/c++io.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/c++locale.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/cpu_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/ctype_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/ctype_inline.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/cxxabi_tweaks.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/error_constants.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/extc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/gthr-default.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/gthr-posix.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/gthr-single.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/gthr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/messages_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/os_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/stdc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/stdtr1c++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/bits/time_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/atomic_word.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/basic_file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/c++allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/c++config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/c++io.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/c++locale.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/cpu_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/ctype_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/ctype_inline.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/cxxabi_tweaks.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/error_constants.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/extc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/gthr-default.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/gthr-posix.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/gthr-single.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/gthr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/messages_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/os_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/stdc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/stdtr1c++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/time_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/ext/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/ext/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/complex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/ctype.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/dirent.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/envlock.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/envz.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/errno.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/fastmath.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/fcntl.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/fenv.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/fnmatch.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/getopt.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/glob.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/grp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/iconv.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/ieeefp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/inttypes.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/langinfo.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/libgen.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/limits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/locale.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/_default_types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/_types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/ansi.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/endian.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/fastmath.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/ieeefp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/malloc.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/param.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/setjmp-dj.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/setjmp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/stdlib.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/termios.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/time.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/machine/types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/malloc.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/math.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/newlib.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/paths.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/pthread.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/pwd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/reent.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/regdef.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/regex.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sched.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/search.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/setjmp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/signal.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/spawn.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/stdatomic.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/stdint.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/stdio.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/stdio_ext.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/stdlib.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/string.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/strings.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_default_fcntl.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_intsup.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/cdefs.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/custom_file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/dir.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/dirent.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/errno.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/fcntl.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/features.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/iconvnls.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/lock.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/param.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/queue.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/reent.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/resource.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/sched.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/signal.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/stat.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/stdio.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/string.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/syslimits.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/time.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/timeb.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/times.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/types.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/unistd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/utime.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/wait.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/tar.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/termios.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/tgmath.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/time.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/unctrl.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/unistd.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/utime.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/utmp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/wchar.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/wctype.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/wordexp.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/xtensa/config/core-isa.h
+xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/crt0.o
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libc.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libg.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libm.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libnosys.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libstdc++.a-gdb.py
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libstdc++.la
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libsupc++.la
+xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/nosys.specs
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libc.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libg.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libm.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libnosys.a
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libstdc++.a-gdb.py
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libstdc++.la
+xtensa-esp32-elf/xtensa-esp32-elf/lib/libsupc++.la
+xtensa-esp32-elf/xtensa-esp32-elf/lib/nosys.specs
+@pkgdir xtensa-esp32-elf/xtensa-esp32-elf/include/rpc
+@pkgdir xtensa-esp32-elf/xtensa-esp32-elf/include/bits
+@pkgdir xtensa-esp32-elf/include
Index: pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo  Sun Mar 24 11:58:04 2019
@@ -0,0 +1,17 @@
+$NetBSD: distinfo,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+SHA1 (crosstool-ng-esp32-2018r1.tar.gz) = 580503f801c3659e012a4a216c28cb5d5b0e2561
+RMD160 (crosstool-ng-esp32-2018r1.tar.gz) = d662fa708412e00b8e932207575010c89998e662
+SHA512 (crosstool-ng-esp32-2018r1.tar.gz) = f3989c34f44bd7b08366403cb1803705c52083d720cf08d1108cef5ca6bfe6004c89e519125f95f550ccaeebdf99d21ecd4e3a550ddaa83e7c7710b53fa94bd9
+Size (crosstool-ng-esp32-2018r1.tar.gz) = 2493670 bytes
+SHA1 (espressif-gcc-8.2.0-bae67e9ef3c3dea93a7cd169a475e05c8013f00b.tar.gz) = dfc94e1677769b86ec4e26f4610d44d0c7b56f24
+RMD160 (espressif-gcc-8.2.0-bae67e9ef3c3dea93a7cd169a475e05c8013f00b.tar.gz) = 4422a4e5c630a3d1a9ac5a273c95d18c45bc2a0b
+SHA512 (espressif-gcc-8.2.0-bae67e9ef3c3dea93a7cd169a475e05c8013f00b.tar.gz) = 
631a475b9352a9bb7f66d6021035effcc735e72fd65c12aef033bdb5011adba89e87a6bca37c0b0616856d239df4169ac2efbc3d5f89a1063d2889b4d29ad9de
+Size (espressif-gcc-8.2.0-bae67e9ef3c3dea93a7cd169a475e05c8013f00b.tar.gz) = 102469670 bytes
+SHA1 (newlib-esp32-2018r1_newlib-2_2_0.tar.gz) = e9cd902804183d753dc5825699cb0b77b5860497
+RMD160 (newlib-esp32-2018r1_newlib-2_2_0.tar.gz) = f7b39dbf15c6a9bf9ca8a7fb0d1e8704eede3a13
+SHA512 (newlib-esp32-2018r1_newlib-2_2_0.tar.gz) = d7daddb655589f1c90a82aa7ce7c7422615ebb45187b56b2e8de0c810fec95240baa7dc50446c31af0ba466da816fbf0ccbd4f1d98a2cdfeb28b90b8458bfe6c
+Size (newlib-esp32-2018r1_newlib-2_2_0.tar.gz) = 16387285 bytes
+SHA1 (patch-configure) = e8ce6b8126845e03bbaa28569074fada93466d85
+SHA1 (patch-contrib_download__prerequisites) = be9b02068b3d4d783e92bee66d480bb2bfe35a84
+SHA1 (patch-gcc_system.h) = 72a75ff773b9b5f3d2f16f4ec7d29e032aba5f53

Index: pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-configure
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-configure:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-configure   Sun Mar 24 11:58:04 2019
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+XXX fails in libgcc build without this.
+It is not clear to me what is supposed to create targ-include/ ...
+
+--- configure.orig     2018-07-26 09:48:58.000000000 +0000
++++ configure
+@@ -7551,7 +7551,7 @@ case " $target_configdirs " in
+       # If we're building newlib, use its generic headers last, but search
+       # for any libc-related directories first (so make it the last -B
+       # switch).
+-      FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/include'
++      FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/sys/xtensa/include -isystem 
$$s/newlib/libc/include'
+ 
+       # If we're building libgloss, find the startup file, simulator library
+       # and linker script.
Index: pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-contrib_download__prerequisites
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-contrib_download__prerequisites:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-contrib_download__prerequisites     Sun Mar 24 11:58:04 2019
@@ -0,0 +1,15 @@
+$NetBSD: patch-contrib_download__prerequisites,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+* POSIX shell portability
+
+--- contrib/download_prerequisites.orig        2017-04-11 16:34:07.000000000 +0000
++++ contrib/download_prerequisites
+@@ -122,7 +122,7 @@ md5_check() {
+   md5_checksum_output=$(md5 -r "${file_to_check}")
+   # Grab the text before the first space
+   md5_checksum_detected="${md5_checksum_output%% *}"
+-  [ "${md5_checksum_expected}" == "${md5_checksum_detected}" ] \
++  [ "${md5_checksum_expected}" = "${md5_checksum_detected}" ] \
+     || die "Cannot verify integrity of possibly corrupted file ${file_to_check}"
+   echo "${file_to_check}: OK"
+ }
Index: pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-gcc_system.h
diff -u /dev/null pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-gcc_system.h:1.1
--- /dev/null   Sun Mar 24 11:58:05 2019
+++ pkgsrc/cross/xtensa-esp32-elf-gcc/patches/patch-gcc_system.h        Sun Mar 24 11:58:04 2019
@@ -0,0 +1,14 @@
+$NetBSD: patch-gcc_system.h,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+--- gcc/system.h.orig  2015-01-05 12:33:28.000000000 +0000
++++ gcc/system.h
+@@ -44,6 +44,9 @@ along with GCC; see the file COPYING3.  
+ #endif
+ 
+ #include <stdio.h>
++#ifdef __cplusplus
++# include <cstdio>
++#endif
+ 
+ /* Define a generic NULL if one hasn't already been defined.  */
+ #ifndef NULL



Home | Main Index | Thread Index | Old Index