From owner-svn-ports-all@freebsd.org Fri Jul 17 17:53:41 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 98D5436AFC9; Fri, 17 Jul 2020 17:53:41 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B7dys33cKz4LKG; Fri, 17 Jul 2020 17:53:41 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 31CBD1D32C; Fri, 17 Jul 2020 17:53:41 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06HHrfHp072969; Fri, 17 Jul 2020 17:53:41 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06HHrekp072965; Fri, 17 Jul 2020 17:53:40 GMT (envelope-from leres@FreeBSD.org) Message-Id: <202007171753.06HHrekp072965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Fri, 17 Jul 2020 17:53:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542445 - head/devel/xtensa-esp32-elf X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/devel/xtensa-esp32-elf X-SVN-Commit-Revision: 542445 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jul 2020 17:53:41 -0000 Author: leres Date: Fri Jul 17 17:53:40 2020 New Revision: 542445 URL: https://svnweb.freebsd.org/changeset/ports/542445 Log: devel/xtensa-esp32-elf: Update to fix PSRAM cache issue This version of the toolchain includes fixes for the PSRAM cache issue described here: https://github.com/espressif/esp-idf/issues/2892 Limit builds to tier 1 platforms (amd64 and i386) until we can switch to a version that builds with gcc9. Turn on CT_FORBID_DOWNLOAD and remove dependency on git; we never want to use it to download anything. Make some incremental improvements to the port Makefile and pkg-plist. Modified: head/devel/xtensa-esp32-elf/Makefile head/devel/xtensa-esp32-elf/distinfo (contents, props changed) head/devel/xtensa-esp32-elf/pkg-descr (contents, props changed) head/devel/xtensa-esp32-elf/pkg-plist (contents, props changed) Modified: head/devel/xtensa-esp32-elf/Makefile ============================================================================== --- head/devel/xtensa-esp32-elf/Makefile Fri Jul 17 17:00:47 2020 (r542444) +++ head/devel/xtensa-esp32-elf/Makefile Fri Jul 17 17:53:40 2020 (r542445) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= xtensa-esp32-elf -DISTVERSION= 1.22.0.g20171219 -PORTREVISION= 4 +DISTVERSION= 1.22.0.g20200617 CATEGORIES= devel MASTER_SITES= SOURCEWARE/binutils/releases/binutils:source1 \ GNU/binutils:source1 \ https://github.com/libexpat/libexpat/releases/download/R_2_1_0/:source2 \ SF/expat/expat/2.1.0:source2 \ - GCC/releases/gcc-5.2.0:source3 \ + GCC/releases/gcc-${GCCVER}:source3 \ GNU/gdb:source4 \ GNU/gmp:source5 \ http://isl.gforge.inria.fr/:source6 \ @@ -22,7 +21,7 @@ MASTER_SITES= SOURCEWARE/binutils/releases/binutils:so ftp://sources.redhat.com/pub/newlib/:source10 DISTFILES= binutils-2.25.1.tar.bz2:source1 \ expat-2.1.0.tar.gz:source2 \ - gcc-5.2.0.tar.bz2:source3 \ + gcc-${GCCVER}.tar.bz2:source3 \ gdb-7.10.tar.xz:source4 \ gmp-6.0.0a.tar.xz:source5 \ isl-0.14.tar.xz:source6 \ @@ -38,13 +37,8 @@ COMMENT= Espressif ESP32 toolchain LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -BROKEN_armv6= fails to build: failed in step 'Installing pass-2 core C gcc compiler' -BROKEN_armv7= fails to build: failed in step 'Installing pass-2 core C gcc compiler' -BROKEN_powerpc64= fails to build: [ERROR] collect2: error: ld returned 1 exit status - BUILD_DEPENDS= bash:shells/bash \ gawk:lang/gawk \ - git:devel/git \ gpatch:devel/patch \ ${LOCALBASE}/bin/grep:textproc/gnugrep \ gperf:devel/gperf \ @@ -56,41 +50,47 @@ BUILD_DEPENDS= bash:shells/bash \ USES= autoreconf:build bison gmake libtool python USE_GCC= 7 USE_GITHUB= yes -USE_LDCONFIG= ${PREFIX}/${PORTNAME}/libexec/gcc/${PORTNAME}/5.2.0 +# Limit to tier 1 platforms until switching to a version that builds with gcc9 +ONLY_FOR_ARCHS= amd64 i386 + NO_MTREE= yes SUBDIR= crosstool-NG -TAGNAME= 1.22.0-80-g6c4433a5 +TAGNAME= 1.22.0-96-g2852398 GH_TUPLE= espressif:${SUBDIR}:${TAGNAME} BINARY_ALIAS= g++=${CXX} gcc=${CC} python=${PYTHON_VERSION} BUILD_ENV= CT_ALLOW_BUILD_AS_ROOT_SURE=1 \ + CT_FORBID_DOWNLOAD=y \ + GREP=${LOCALBASE}/bin/grep \ LD_RUN_PATH=${PREFIX}/lib/${CC} \ + LDFLAGS=-I/usr/local/lib \ ${MAKE_ENV:MPATH=*} +ESPVER= crosstool-ng-$(TAGNAME) +GCCVER= 5.2.0 +PLIST_SUB= PKGBASE=$(PKGBASE) GCCVER=$(GCCVER) +TARBALLS= ${BUILD_WRKSRC}/.build/tarballs + post-extract: - ${MKDIR} ${BUILD_WRKSRC}/.build/tarballs + ${MKDIR} ${TARBALLS} .for F in $(DISTFILES:N$(EXTRACT_ONLY)) - ${LN} -s ${DISTDIR}/${F:C/:source[0-9]+$//} \ - ${BUILD_WRKSRC}/.build/tarballs + ${LN} -s ${DISTDIR}/${F:C/:source[0-9]+$//} ${TARBALLS} .endfor ${MKDIR} ${WRKSRC}/local-patches/gdb/7.10 ${CP} ${FILESDIR}/0001-gdb-7.12.1.patch ${WRKSRC}/local-patches/gdb/7.10 echo CT_LOG_PROGRESS_BAR=n >> \ ${BUILD_WRKSRC}/samples/${PORTNAME}/crosstool.config -post-patch: - @${REINPLACE_CMD} -e 's/\(GNU bash, version.*4\)/\1|5/' \ - ${WRKSRC}/configure.ac - do-configure: cd ${BUILD_WRKSRC} && ./bootstrap - ${PRINTF} "#!/bin/sh\necho '${SUBDIR:tl}-${TAGNAME}'\n" > \ + ${PRINTF} "#!/bin/sh\necho '${ESPVER}'\n" > \ ${BUILD_WRKSRC}/version.sh ${CHMOD} -w+x ${BUILD_WRKSRC}/version.sh cd ${BUILD_WRKSRC} && \ - ./configure --enable-local --with-grep=${LOCALBASE}/bin/grep + ${SETENV} ${BUILD_ENV} \ + ./configure --enable-local --prefix=${WRKDIR}/ct-ng --exec-prefix=${WRKDIR}/ct-ng cd ${BUILD_WRKSRC} && \ - ${SETENV} -uMAKELEVEL -uMAKEFLAGS -u.MAKE.LEVEL.ENV \ + ${SETENV} -uMAKELEVEL -uMAKEFLAGS -u.MAKE.LEVEL.ENV ${BUILD_ENV} \ ${MAKE_CMD} install && ${SETENV} ${BUILD_ENV} ./ct-ng ${PORTNAME} do-build: @@ -101,13 +101,13 @@ do-build: ${CHMOD} -w . lib do-install: - cd ${BUILD_WRKSRC}/builds && \ - ${COPYTREE_BIN} ${PORTNAME} ${STAGEDIR}${PREFIX} - ${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME} -type f | \ + cd ${BUILD_WRKSRC}/builds/${PORTNAME} && \ + ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/${PKGBASE} + ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE} -type f | \ ${XARGS} ${CHMOD} -wx - ${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME}/bin \ - ${STAGEDIR}${PREFIX}/${PORTNAME}/libexec/gcc/${PORTNAME}/5.2.0 \ - ${STAGEDIR}${PREFIX}/${PORTNAME}/${PORTNAME}/bin -type f | \ + ${FIND} ${STAGEDIR}${PREFIX}/${PKGBASE}/bin \ + ${STAGEDIR}${PREFIX}/${PKGBASE}/libexec/gcc/${PORTNAME}/${GCCVER} \ + ${STAGEDIR}${PREFIX}/${PKGBASE}/${PORTNAME}/bin -type f | \ ${XARGS} ${CHMOD} +x .include Modified: head/devel/xtensa-esp32-elf/distinfo ============================================================================== --- head/devel/xtensa-esp32-elf/distinfo Fri Jul 17 17:00:47 2020 (r542444) +++ head/devel/xtensa-esp32-elf/distinfo Fri Jul 17 17:53:40 2020 (r542445) @@ -1,4 +1,4 @@ -TIMESTAMP = 1525213647 +TIMESTAMP = 1594919972 SHA256 (binutils-2.25.1.tar.bz2) = b5b14added7d78a8d1ca70b5cb75fef57ce2197264f4f5835326b0df22ac9f22 SIZE (binutils-2.25.1.tar.bz2) = 24163561 SHA256 (expat-2.1.0.tar.gz) = 823705472f816df21c8f6aa026dd162b280806838bb55b3432b0fb1fcca7eb86 @@ -19,5 +19,5 @@ SHA256 (ncurses-6.0.tar.gz) = f551c24b30ce8bfb6e96d9f5 SIZE (ncurses-6.0.tar.gz) = 3131891 SHA256 (newlib-2.2.0.tar.gz) = f8add263b0737591aff451b12a00c262c2efac4fa87d741fa1c318fc3bb335be SIZE (newlib-2.2.0.tar.gz) = 16521910 -SHA256 (espressif-crosstool-NG-1.22.0.g20171219-1.22.0-80-g6c4433a5_GH0.tar.gz) = c8e53ef0d0fb52dd9ae1e29d92ba7abbba04f40598cdbffb0cbd6af7cc433d85 -SIZE (espressif-crosstool-NG-1.22.0.g20171219-1.22.0-80-g6c4433a5_GH0.tar.gz) = 2662363 +SHA256 (espressif-crosstool-NG-1.22.0.g20200617-1.22.0-96-g2852398_GH0.tar.gz) = d6a170b935babc3374a1e51283f7f6ef4d6c86cb50c6464741fe408782f0b7cf +SIZE (espressif-crosstool-NG-1.22.0.g20200617-1.22.0-96-g2852398_GH0.tar.gz) = 2668825 Modified: head/devel/xtensa-esp32-elf/pkg-descr ============================================================================== --- head/devel/xtensa-esp32-elf/pkg-descr Fri Jul 17 17:00:47 2020 (r542444) +++ head/devel/xtensa-esp32-elf/pkg-descr Fri Jul 17 17:53:40 2020 (r542445) @@ -1,3 +1,6 @@ The Espressif ESP32 toolchain to support Arduino and FreeRTOS projects. +This version produces a gcc 5.2.0 based toolchain for use with v3.3 +of the esp-idf. + WWW: https://dl.espressif.com/doc/esp-idf/latest/get-started/index.html#setup-toolchain Modified: head/devel/xtensa-esp32-elf/pkg-plist ============================================================================== --- head/devel/xtensa-esp32-elf/pkg-plist Fri Jul 17 17:00:47 2020 (r542444) +++ head/devel/xtensa-esp32-elf/pkg-plist Fri Jul 17 17:53:40 2020 (r542445) @@ -1,1555 +1,1555 @@ -xtensa-esp32-elf/bin/xtensa-esp32-elf-addr2line -xtensa-esp32-elf/bin/xtensa-esp32-elf-ar -xtensa-esp32-elf/bin/xtensa-esp32-elf-as -xtensa-esp32-elf/bin/xtensa-esp32-elf-c++ -xtensa-esp32-elf/bin/xtensa-esp32-elf-c++filt -xtensa-esp32-elf/bin/xtensa-esp32-elf-cc -xtensa-esp32-elf/bin/xtensa-esp32-elf-cpp -xtensa-esp32-elf/bin/xtensa-esp32-elf-ct-ng.config -xtensa-esp32-elf/bin/xtensa-esp32-elf-elfedit -xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-5.2.0 -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-tool -xtensa-esp32-elf/bin/xtensa-esp32-elf-gdb -xtensa-esp32-elf/bin/xtensa-esp32-elf-gprof -xtensa-esp32-elf/bin/xtensa-esp32-elf-ld -xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.bfd -xtensa-esp32-elf/bin/xtensa-esp32-elf-nm -xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy -xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump -xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib -xtensa-esp32-elf/bin/xtensa-esp32-elf-readelf -xtensa-esp32-elf/bin/xtensa-esp32-elf-size -xtensa-esp32-elf/bin/xtensa-esp32-elf-strings -xtensa-esp32-elf/bin/xtensa-esp32-elf-strip -xtensa-esp32-elf/include/gdb/jit-reader.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/crtbegin.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/crtend.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/crti.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/crtn.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/crtbegin.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/crtend.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/crti.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/crtn.o -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/libgcc.a -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/esp32-psram/libgcov.a -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include-fixed/README -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include-fixed/limits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include-fixed/syslimits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/float.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/iso646.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdalign.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdarg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdatomic.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdbool.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stddef.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdfix.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdint-gcc.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdint.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/stdnoreturn.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/tgmath.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/unwind.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/include/varargs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/fixinc_list -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/gsyslimits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/include/README -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/include/limits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/macro_list -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/install-tools/mkheaders.conf -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/libgcc.a -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/libgcov.a -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/gtype.state -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ada/gcc-interface/ada-tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/addresses.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/alias.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/all-tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/alloc-pool.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ansidecl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/asan.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/attribs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/auto-host.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/auto-profile.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/b-header-vars -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/basic-block.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/bb-reorder.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/bitmap.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/builtin-attrs.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/builtin-types.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/builtins.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/bversion.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-family/c-common.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-family/c-common.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-family/c-objc.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-family/c-pragma.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-family/c-pretty-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/c-tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/calls.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ccmp.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfg-flags.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfganal.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgbuild.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgcleanup.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgexpand.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfghooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgloop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgloopmanip.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cfgrtl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cgraph.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/chkp-builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cif-code.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cilk-builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cilk.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cilkplus.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/collect-utils.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/collect2-aix.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/collect2.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/conditions.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/dbxelf.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/elfos.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/initfini-array.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/newlib-stdint.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/xtensa/elf.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/xtensa/xtensa-protos.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/config/xtensa/xtensa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/configargs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/context.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/convert.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/coretypes.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/coverage.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cp/cp-tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cp/cp-tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cp/cxx-pretty-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cp/name-lookup.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cp/type-utils.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cppbuiltin.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cppdefault.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cpplib.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/cselib.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/data-streamer.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dbgcnt.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dbgcnt.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dbxout.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dce.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ddg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/debug.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/defaults.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/df.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dfp.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/diagnostic-color.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/diagnostic-core.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/diagnostic.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/diagnostic.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dojump.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dominance.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/domwalk.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/double-int.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dumpfile.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dwarf2asm.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/dwarf2out.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/emit-rtl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/errors.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/et-forest.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/except.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/explow.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/expmed.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/expr.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/fibonacci_heap.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/file-find.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/filenames.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/fixed-value.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/flag-types.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/flags.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/fold-const.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/function.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcc-plugin.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcc-symtab.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcc.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcov-counter.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcov-io.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcse-common.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gcse.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/generic-match.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gengtype.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/genrtl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gensupport.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ggc-internal.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ggc.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-builder.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-expr.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-fold.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-iterator.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-low.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-match.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-pretty-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-ssa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-streamer.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple-walk.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimple.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimplify-me.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gimplify.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/glimits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graph.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graphds.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graphite-isl-ast-to-gimple.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graphite-poly.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graphite-scop-detection.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/graphite-sese-to-poly.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gsstruct.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gstab.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gsyms.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gsyslimits.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gtm-builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/gtype-desc.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hard-reg-set.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hash-map.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hash-set.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hash-table.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hashtab.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/highlev-plugin-common.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hosthooks-def.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hosthooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hw-doloop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/hwint.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ifcvt.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/inchash.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/incpath.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/input.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-addr.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-codes.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-constants.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-flags.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-modes.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/insn-notes.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/internal-fn.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/internal-fn.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/intl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-chkp.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-icf-gimple.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-icf.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-inline.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-prop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-ref.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-reference.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ipa-utils.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ira-int.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ira.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/is-a.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/java/java-tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/langhooks-def.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/langhooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lcm.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/libfuncs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/libiberty.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/limitx.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/limity.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/line-map.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/loop-unroll.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lower-subreg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lra-int.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lra.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lto-compress.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lto-section-names.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/lto-streamer.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/machmode.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/machmode.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/md5.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/mode-classes.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/objc/objc-tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/obstack.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/omega.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/omp-builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/omp-low.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/optabs.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/optabs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/options.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/opts-diagnostic.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/opts.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/output.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/params.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/params.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/pass-instances.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/pass_manager.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/passes.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/plugin-api.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/plugin-version.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/plugin.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/plugin.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/predict.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/predict.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/prefix.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/pretty-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/print-rtl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/print-tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/profile.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/read-md.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/real.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/realmpfr.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/recog.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/reg-notes.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/regcprop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/regrename.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/regs.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/regset.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/reload.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/resource.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtl-chkp.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtl-error.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtl-iter.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtl.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtl.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtlhash.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/rtlhooks-def.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/safe-ctype.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sanitizer.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sbitmap.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sched-int.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sdbout.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sel-sched-dump.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sel-sched-ir.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sel-sched.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sese.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/shrink-wrap.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/signop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sparseset.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/splay-tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sreal.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ssa-iterators.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/stab.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/statistics.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/stmt.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/stor-layout.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/streamer-hooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/stringpool.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/symbol-summary.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/symtab.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/sync-builtins.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/system.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/target-def.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/target-globals.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/target-hooks-macros.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/target.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/target.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/targhooks.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/timevar.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/timevar.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tm-preds.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tm.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tm_p.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/toplev.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/trans-mem.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-affine.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-browser.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-cfg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-cfgcleanup.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-check.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-chkp.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-chrec.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-core.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-data-ref.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-dfa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-diagnostic.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-dump.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-eh.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-hasher.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-inline.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-into-ssa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-iterator.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-nested.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-object-size.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-outof-ssa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-parloops.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-pass.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-phinodes.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-pretty-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-scalar-evolution.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-address.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-alias.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-coalesce.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-dom.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-live.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-loop-ivopts.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-loop-manip.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-loop-niter.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-loop.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-operands.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-propagate.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-sccvn.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-ter.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-threadedge.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa-threadupdate.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssa.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-ssanames.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-stdarg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-streamer.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree-vectorizer.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/treestruct.def -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tsan.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/tsystem.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/typeclass.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/typed-splay-tree.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/ubsan.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/valtrack.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/value-prof.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/varasm.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/vec.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/version.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/vmsdbg.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/vtable-verify.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/wide-int-print.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/wide-int.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/xcoff.h -xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/5.2.0/plugin/include/xcoffout.h -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.x -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xbn -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xc -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xd -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xdc -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xdw -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xn -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xr -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xs -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xsc -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xsw -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xu -xtensa-esp32-elf/lib/ldscripts/elf32xtensa.xw -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/cc1 -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/cc1plus -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/collect2 -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/install-tools/fixinc.sh -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/install-tools/fixincl -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/install-tools/mkheaders -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/install-tools/mkinstalldirs -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/liblto_plugin.so -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/liblto_plugin.so.0 -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/lto-wrapper -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/lto1 -xtensa-esp32-elf/libexec/gcc/xtensa-esp32-elf/5.2.0/plugin/gengtype -xtensa-esp32-elf/share/gcc-5.2.0/python/libstdcxx/__init__.py -xtensa-esp32-elf/share/gcc-5.2.0/python/libstdcxx/v6/__init__.py -xtensa-esp32-elf/share/gcc-5.2.0/python/libstdcxx/v6/printers.py -xtensa-esp32-elf/share/gcc-5.2.0/python/libstdcxx/v6/xmethods.py -xtensa-esp32-elf/share/gdb/gdbinit -xtensa-esp32-elf/share/gdb/python/gdb/FrameDecorator.py -xtensa-esp32-elf/share/gdb/python/gdb/FrameIterator.py -xtensa-esp32-elf/share/gdb/python/gdb/__init__.py -xtensa-esp32-elf/share/gdb/python/gdb/command/__init__.py -xtensa-esp32-elf/share/gdb/python/gdb/command/explore.py -xtensa-esp32-elf/share/gdb/python/gdb/command/frame_filters.py -xtensa-esp32-elf/share/gdb/python/gdb/command/pretty_printers.py -xtensa-esp32-elf/share/gdb/python/gdb/command/prompt.py -xtensa-esp32-elf/share/gdb/python/gdb/command/type_printers.py -xtensa-esp32-elf/share/gdb/python/gdb/command/unwinders.py -xtensa-esp32-elf/share/gdb/python/gdb/command/xmethods.py -xtensa-esp32-elf/share/gdb/python/gdb/frames.py -xtensa-esp32-elf/share/gdb/python/gdb/function/__init__.py -xtensa-esp32-elf/share/gdb/python/gdb/function/caller_is.py -xtensa-esp32-elf/share/gdb/python/gdb/function/strfns.py -xtensa-esp32-elf/share/gdb/python/gdb/printer/__init__.py -xtensa-esp32-elf/share/gdb/python/gdb/printer/bound_registers.py -xtensa-esp32-elf/share/gdb/python/gdb/printing.py -xtensa-esp32-elf/share/gdb/python/gdb/prompt.py -xtensa-esp32-elf/share/gdb/python/gdb/types.py -xtensa-esp32-elf/share/gdb/python/gdb/unwinder.py -xtensa-esp32-elf/share/gdb/python/gdb/xmethod.py -xtensa-esp32-elf/share/gdb/syscalls/aarch64-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/amd64-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/arm-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/gdb-syscalls.dtd -xtensa-esp32-elf/share/gdb/syscalls/i386-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/mips-n32-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/mips-n64-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/mips-o32-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/ppc-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/ppc64-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/s390-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/s390x-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/sparc-linux.xml -xtensa-esp32-elf/share/gdb/syscalls/sparc64-linux.xml -xtensa-esp32-elf/share/gdb/system-gdbinit/elinos.py -xtensa-esp32-elf/share/gdb/system-gdbinit/wrs-linux.py -xtensa-esp32-elf/xtensa-esp32-elf/bin/ar -xtensa-esp32-elf/xtensa-esp32-elf/bin/as -xtensa-esp32-elf/xtensa-esp32-elf/bin/ld -xtensa-esp32-elf/xtensa-esp32-elf/bin/ld.bfd -xtensa-esp32-elf/xtensa-esp32-elf/bin/nm -xtensa-esp32-elf/xtensa-esp32-elf/bin/objcopy -xtensa-esp32-elf/xtensa-esp32-elf/bin/objdump -xtensa-esp32-elf/xtensa-esp32-elf/bin/ranlib -xtensa-esp32-elf/xtensa-esp32-elf/bin/strip -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++/5.2.0/algorithm -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/array -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/atomic -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/auto_ptr.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/backward_warning.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/binders.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/hash_fun.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/hash_map -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/hash_set -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/hashtable.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/backward/strstream -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/algorithmfwd.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/alloc_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/allocated_ptr.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/atomic_base.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/atomic_futex.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/atomic_lockfree_defines.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/basic_ios.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/basic_ios.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/basic_string.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/basic_string.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/boost_concept_check.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/c++0x_warning.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/c++14_warning.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/char_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/codecvt.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/concept_check.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/cpp_type_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/cxxabi_forced.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/deque.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/enable_special_members.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/exception_defines.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/exception_ptr.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/forward_list.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/forward_list.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/fstream.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/functexcept.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/functional_hash.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/gslice.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/gslice_array.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/hash_bytes.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/hashtable.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/hashtable_policy.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/indirect_array.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/ios_base.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/istream.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/list.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_classes.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_classes.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_conv.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_facets.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_facets.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_facets_nonio.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/locale_facets_nonio.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/localefwd.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/mask_array.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/memoryfwd.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/move.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/nested_exception.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/ostream.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/ostream_insert.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/parse_numbers.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/postypes.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/predefined_ops.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/ptr_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/random.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/random.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/range_access.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_automaton.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_automaton.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_compiler.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_compiler.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_constants.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_error.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_executor.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_executor.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_scanner.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/regex_scanner.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/shared_ptr.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/shared_ptr_atomic.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/shared_ptr_base.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/slice_array.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/sstream.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_bvector.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_construct.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_deque.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_function.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_heap.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_iterator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_iterator_base_funcs.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_iterator_base_types.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_list.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_map.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_multimap.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_multiset.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_numeric.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_pair.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_queue.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_raw_storage_iter.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_relops.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_set.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_stack.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_tempbuf.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_tree.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_uninitialized.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_vector.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stream_iterator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/streambuf.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/streambuf_iterator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/stringfwd.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/unique_ptr.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/unordered_map.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/unordered_set.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/uses_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/valarray_after.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/valarray_array.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/valarray_array.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/valarray_before.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bits/vector.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/bitset -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cassert -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ccomplex -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cctype -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cerrno -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cfenv -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cfloat -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/chrono -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cinttypes -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ciso646 -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/climits -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/clocale -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cmath -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/codecvt -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/complex -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/complex.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/condition_variable -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/csetjmp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/csignal -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdalign -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdarg -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdbool -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstddef -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdint -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdio -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstdlib -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cstring -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ctgmath -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ctime -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cwchar -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cwctype -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/cxxabi.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/array -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/bitset -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/debug.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/deque -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/formatter.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/forward_list -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/functions.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/list -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/macros.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/map -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/map.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/multimap.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/multiset.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_base.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_container.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_iterator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_iterator.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_local_iterator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_local_iterator.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_sequence.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_sequence.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_unordered_base.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_unordered_container.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/safe_unordered_container.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/set -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/set.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/string -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/unordered_map -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/unordered_set -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/debug/vector -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/decimal/decimal -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/decimal/decimal.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/deque -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/exception -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/algorithm -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/any -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/chrono -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/functional -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/optional -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/ratio -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/string_view -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/string_view.tcc -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/system_error -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/tuple -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/experimental/type_traits -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/algorithm -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/aligned_buffer.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/alloc_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/array_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/atomicity.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/bitmap_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/cast.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/cmath -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/codecvt_specializations.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/concurrence.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/debug_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/enc_filebuf.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/extptr_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/functional -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/hash_map -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/hash_set -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/iterator -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/malloc_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/memory -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/mt_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/new_allocator.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/numeric -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/numeric_traits.h -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/assoc_container.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/branch_policy/traits.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/cond_dealtor.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/container_base_dispatch.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/debug_map_base.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp -xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***