diff options
author | bouyer <bouyer@pkgsrc.org> | 2019-09-20 15:20:20 +0000 |
---|---|---|
committer | bouyer <bouyer@pkgsrc.org> | 2019-09-20 15:20:20 +0000 |
commit | 41665a65393a2e21ce7fa91d0b0a43eb0f872a2f (patch) | |
tree | 2bf6544de20f2e6e799d86cd8ba1c4cd4e3e1346 /cross | |
parent | e61d46ec9982f7345a42bff12d0770eac42621d1 (diff) | |
download | pkgsrc-41665a65393a2e21ce7fa91d0b0a43eb0f872a2f.tar.gz |
Add xtensa-lx106-elf-gcc version 4.8.2. Build options taken
from https://github.com/earlephilhower/esp-quick-toolchain.
This is a version compatible with the Arduino environement.
Cross GCC for for chips using the Xtensa lx106 core, such as the
Espressif ESP8266 wireless modules.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/DESCR | 2 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/Makefile | 98 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/PLIST | 1003 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/distinfo | 73 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/patches/patch-gcc_Makefile.in | 149 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/patches/patch-gcc_system.h | 14 | ||||
-rw-r--r-- | cross/xtensa-lx106-elf-gcc/patches/patch-newlib_libc_include_limits.h | 23 |
7 files changed, 1362 insertions, 0 deletions
diff --git a/cross/xtensa-lx106-elf-gcc/DESCR b/cross/xtensa-lx106-elf-gcc/DESCR new file mode 100644 index 00000000000..e12f49aed15 --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/DESCR @@ -0,0 +1,2 @@ +Cross GCC for for chips using the Xtensa lx106 core, such as the +Espressif ESP8266 wireless modules. diff --git a/cross/xtensa-lx106-elf-gcc/Makefile b/cross/xtensa-lx106-elf-gcc/Makefile new file mode 100644 index 00000000000..82858465a5c --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/Makefile @@ -0,0 +1,98 @@ +# $NetBSD: Makefile,v 1.1 2019/09/20 15:20:20 bouyer Exp $ + +# using configure options and sources from +# https://github.com/earlephilhower/esp-quick-toolchain + +DISTNAME= gcc-xtensa-4.8.2 +PKGNAME= ${DISTNAME:C/gcc-xtensa/xtensa-lx106-elf-gcc/} +CATEGORIES= cross +MASTER_SITES= ${MASTER_SITE_GITHUB:=jcmvbkbc/} +GITHUB_PROJECT= gcc-xtensa +GITHUB_TAG= a0936f8b396491bc7894c8bc5e80971cc9138e94 + +DIST_SUBDIR= ${PKGNAME} + +# Custom xtensa newlib +DISTFILES= ${DEFAULT_DISTFILES} +DISTFILES+= newlib-${NEWLIBVER}.tar.gz +NEWLIBVER= xtensa-2_2_0-lock-arduino_20190913 +SITES.newlib-${NEWLIBVER}.tar.gz= -https://github.com/earlephilhower/newlib-xtensa/archive/b350aadd0c7f44d5ec867494a795a0eed972ee9a.tar.gz + +# extra patches +.for _p in \ + gcc-ctype-inline-pgmread.patch \ + gcc-docs.patch \ + gcc-enable-mforcel32-eh.patch \ + gcc-exception-emergency.patch \ + gcc-exception-what-to-pmem.patch \ + gcc-file-shortname.patch \ + gcc-fix-defaults-h-gcc7.patch \ + gcc-fix-elfos-h-gcc7.patch \ + gcc-gmpn_invert_limb.patch \ + gcc-libc_name_p-fix.patch \ + gcc-mforce-l32-jcmvbkbc.patch \ + gcc-osx-malloc.patch \ + gcc-stdcsupp-safe.patch \ + gcc-unwind-safe.patch +PATCHFILES+= ${_p} +.endfor +PATCH_SITES+= https://raw.githubusercontent.com/earlephilhower/esp-quick-toolchain/master/patches/gcc4.8/ + +PATCHFILES+= gcc-001-jump-tables-in-text-section-earlephilhower.patch +PATCH_SITES+= https://github.com/earlephilhower/esp-quick-toolchain/raw/master/patches/ +PATCH_DIST_STRIP= -p1 + +MAINTAINER= bouyer@NetBSD.org +HOMEPAGE= https://github.com/espressif/gcc +COMMENT= Cross GCC for Espressif ESP8266 bare metal environment +LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3 + +DEPENDS+= xtensa-lx106-elf-binutils-[0-9]*:../../cross/xtensa-lx106-elf-binutils + +FILESDIR= ${.CURDIR}/../../cross/xtensa-lx106-elf-binutils/files + +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-lx106-elf + +CONFIGURE_ARGS+= --enable-languages=c,c++ +CONFIGURE_ARGS+= --target=xtensa-lx106-elf +CONFIGURE_ARGS+= --disable-shared +CONFIGURE_ARGS+= --with-newlib +CONFIGURE_ARGS+= --enable-threads=no +CONFIGURE_ARGS+= --disable-__cxa_atexit +CONFIGURE_ARGS+= --disable-libgomp +CONFIGURE_ARGS+= --disable-libmudflap +CONFIGURE_ARGS+= --disable-nls +CONFIGURE_ARGS+= --disable-multilib +CONFIGURE_ARGS+= --disable-bootstrap +CONFIGURE_ARGS+= --enable-languages=c,c++ +CONFIGURE_ARGS+= --enable-lto +CONFIGURE_ARGS+= --enable-static=yes +CONFIGURE_ARGS+= --disable-libstdcxx-verbose + +post-extract: + ${LN} -s ${WRKDIR}/newlib-*/newlib ${WRKSRC}/newlib + ${LN} -s ${WRKDIR}/newlib-*/libgloss ${WRKSRC}/libgloss + +pre-configure: + ${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR} + ${CP} ${FILESDIR}/xtensa-config.h ${WRKSRC}/include/xtensa-config.h + +.include "../../devel/gmp/buildlink3.mk" +.include "../../math/mpfr/buildlink3.mk" +.include "../../math/mpcomplex/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/cross/xtensa-lx106-elf-gcc/PLIST b/cross/xtensa-lx106-elf-gcc/PLIST new file mode 100644 index 00000000000..0cebf57d365 --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/PLIST @@ -0,0 +1,1003 @@ +@comment $NetBSD: PLIST,v 1.1 2019/09/20 15:20:20 bouyer Exp $ +xtensa-lx106-elf/bin/xtensa-lx106-elf-c++ +xtensa-lx106-elf/bin/xtensa-lx106-elf-cpp +xtensa-lx106-elf/bin/xtensa-lx106-elf-g++ +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-${PKGVERSION} +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-ar +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-nm +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcc-ranlib +xtensa-lx106-elf/bin/xtensa-lx106-elf-gcov +xtensa-lx106-elf/info/cpp.info +xtensa-lx106-elf/info/cppinternals.info +xtensa-lx106-elf/info/gcc.info +xtensa-lx106-elf/info/gccinstall.info +xtensa-lx106-elf/info/gccint.info +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/crtbegin.o +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/crtend.o +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/crti.o +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/crtn.o +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/float.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/iso646.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/ssp/ssp.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/ssp/stdio.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/ssp/string.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/ssp/unistd.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdalign.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdarg.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdbool.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stddef.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdfix.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdint-gcc.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdint.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/stdnoreturn.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/tgmath.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/unwind.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/include/varargs.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/fixinc_list +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/gsyslimits.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/include/README +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/macro_list +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/mkheaders.conf +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/libgcc.a +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/libgcov.a +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/gtype.state +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ada/gcc-interface/ada-tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/alias.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/all-tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/alloc-pool.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ansidecl.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/auto-host.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/b-header-vars +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/basic-block.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/bitmap.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/builtins.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/bversion.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-family/c-common.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-family/c-common.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-family/c-objc.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-family/c-pragma.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-family/c-pretty-print.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/c-tree.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cfg-flags.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cfghooks.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cfgloop.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cgraph.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cif-code.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/dbxelf.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/elfos.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/initfini-array.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/newlib-stdint.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/xtensa/elf.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa-protos.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/configargs.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/coretypes.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cp/cp-tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cp/cp-tree.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cp/cxx-pretty-print.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cp/name-lookup.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cppdefault.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/cpplib.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/debug.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/defaults.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/diagnostic-core.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/diagnostic.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/diagnostic.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/double-int.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/dumpfile.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/emit-rtl.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/except.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/filenames.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/fixed-value.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/flag-types.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/flags.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/function.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gcc-plugin.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/genrtl.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ggc.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gimple-pretty-print.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gimple.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gimple.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gsstruct.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gtm-builtins.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/gtype-desc.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/hard-reg-set.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/hashtab.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/highlev-plugin-common.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/hwint.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/incpath.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/input.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/insn-constants.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/insn-flags.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/insn-modes.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/insn-notes.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/internal-fn.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/internal-fn.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/intl.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ipa-prop.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ipa-ref-inline.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ipa-ref.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ipa-reference.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/ipa-utils.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/is-a.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/java/java-tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/langhooks.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/libiberty.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/line-map.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/machmode.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/md5.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/mode-classes.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/objc/objc-tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/obstack.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/omp-builtins.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/options.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/opts.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/output.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/params.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/params.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/plugin-api.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/plugin-version.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/plugin.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/plugin.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/pointer-set.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/predict.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/predict.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/prefix.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/pretty-print.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/real.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/realmpfr.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/reg-notes.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/rtl.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/rtl.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/safe-ctype.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/sanitizer.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/sbitmap.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/splay-tree.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/statistics.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/symtab.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/sync-builtins.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/system.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/target-hooks-macros.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/target.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/target.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/timevar.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/timevar.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tm-preds.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tm.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tm_p.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/toplev.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-check.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-dump.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-flow-inline.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-flow.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-inline.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-iterator.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-pass.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-pretty-print.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-ssa-alias.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-ssa-operands.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree-ssa-sccvn.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/tree.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/treestruct.def +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/vec.h +xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/include/version.h +xtensa-lx106-elf/lib/libiberty.a +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/cc1 +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/cc1plus +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/collect2 +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/fixinc.sh +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/fixincl +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/mkheaders +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/install-tools/mkinstalldirs +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/liblto_plugin.la +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/lto-wrapper +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/lto1 +xtensa-lx106-elf/libexec/gcc/xtensa-lx106-elf/${PKGVERSION}/plugin/gengtype +xtensa-lx106-elf/man/man1/xtensa-lx106-elf-cpp.1 +xtensa-lx106-elf/man/man1/xtensa-lx106-elf-g++.1 +xtensa-lx106-elf/man/man1/xtensa-lx106-elf-gcc.1 +xtensa-lx106-elf/man/man1/xtensa-lx106-elf-gcov.1 +xtensa-lx106-elf/man/man7/fsf-funding.7 +xtensa-lx106-elf/man/man7/gfdl.7 +xtensa-lx106-elf/man/man7/gpl.7 +xtensa-lx106-elf/share/gcc-${PKGVERSION}/python/libstdcxx/__init__.py +xtensa-lx106-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/__init__.py +xtensa-lx106-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/printers.py +xtensa-lx106-elf/xtensa-lx106-elf/include/_ansi.h +xtensa-lx106-elf/xtensa-lx106-elf/include/_syslist.h +xtensa-lx106-elf/xtensa-lx106-elf/include/alloca.h +xtensa-lx106-elf/xtensa-lx106-elf/include/ar.h +xtensa-lx106-elf/xtensa-lx106-elf/include/argz.h +xtensa-lx106-elf/xtensa-lx106-elf/include/assert.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/algorithm +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/array +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/atomic +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/auto_ptr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/backward_warning.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/binders.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/hash_fun.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/hash_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/hash_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/hashtable.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/backward/strstream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/algorithmfwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/alloc_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/atomic_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/atomic_lockfree_defines.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/basic_ios.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/basic_ios.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/basic_string.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/basic_string.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/boost_concept_check.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/c++0x_warning.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/char_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/codecvt.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/concept_check.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/cpp_type_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/cxxabi_forced.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/deque.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/exception_defines.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/exception_ptr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/forward_list.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/forward_list.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/fstream.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/functexcept.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/functional_hash.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/gslice.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/gslice_array.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/hash_bytes.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/hashtable.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/hashtable_policy.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/indirect_array.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/ios_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/istream.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/list.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_classes.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_classes.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_facets.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_facets.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_facets_nonio.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/locale_facets_nonio.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/localefwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/mask_array.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/memoryfwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/move.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/nested_exception.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/ostream.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/ostream_insert.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/postypes.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/ptr_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/random.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/random.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/range_access.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_compiler.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_constants.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_cursor.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_error.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_grep_matcher.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_grep_matcher.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_nfa.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/regex_nfa.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/shared_ptr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/shared_ptr_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/slice_array.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/sstream.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_algo.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_algobase.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_bvector.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_construct.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_deque.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_function.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_heap.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_iterator_base_funcs.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_iterator_base_types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_list.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_multimap.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_multiset.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_numeric.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_pair.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_queue.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_raw_storage_iter.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_relops.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_set.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_stack.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_tempbuf.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_tree.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_uninitialized.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stl_vector.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stream_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/streambuf.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/streambuf_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/stringfwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/unique_ptr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/unordered_map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/unordered_set.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/uses_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/valarray_after.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/valarray_array.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/valarray_array.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/valarray_before.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bits/vector.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/bitset +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cassert +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ccomplex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cctype +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cerrno +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cfenv +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cfloat +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/chrono +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cinttypes +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ciso646 +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/climits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/clocale +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cmath +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/complex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/complex.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/condition_variable +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/csetjmp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/csignal +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdalign +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdarg +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdbool +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstddef +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdint +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdio +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstdlib +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cstring +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ctgmath +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ctime +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cwchar +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cwctype +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/cxxabi.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/array +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/bitset +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/debug.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/deque +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/formatter.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/forward_list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/functions.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/macros.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/multimap.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/multiset.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_iterator.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_local_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_local_iterator.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_sequence.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_sequence.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_unordered_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_unordered_container.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/safe_unordered_container.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/set.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/string +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/unordered_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/unordered_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/debug/vector +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/decimal/decimal +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/decimal/decimal.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/deque +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/exception +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/algorithm +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/alloc_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/array_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/atomicity.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/bitmap_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/cast.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/cmath +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/codecvt_specializations.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/concurrence.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/debug_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/enc_filebuf.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/extptr_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/functional +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/hash_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/hash_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/iterator +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/malloc_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/memory +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/mt_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/new_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/numeric +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/numeric_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/assoc_container.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/bin_search_tree_/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/entry_pred.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/resize_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/branch_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/branch_policy/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/cond_dealtor.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/container_base_dispatch.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/debug_map_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/eq_by_less.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/lu_map_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/ov_tree_map_/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/priority_queue_base_dispatch.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/node.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rb_tree_map_/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/node.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/splay_tree_/traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/standard_policies.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/tree_trace_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/type_utils.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/types_traits.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/exception.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/hash_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/list_update_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/priority_queue.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/tag_and_trait.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/tree_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pb_ds/trie_policy.hpp +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pod_char_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pointer.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/pool_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/random +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/random.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/rb_tree +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/rc_string_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/rope +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/ropeimpl.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/slist +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/sso_string_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/stdio_filebuf.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/stdio_sync_filebuf.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/string_conversions.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/throw_allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/type_traits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/typelist.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/vstring.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/vstring.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/vstring_fwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ext/vstring_util.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/fenv.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/forward_list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/fstream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/functional +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/future +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/initializer_list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/iomanip +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ios +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/iosfwd +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/iostream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/istream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/iterator +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/limits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/locale +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/memory +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/mutex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/new +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/numeric +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ostream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/algo.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/algobase.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/algorithm +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/algorithmfwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/balanced_quicksort.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/basic_iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/checkers.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/compatibility.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/compiletime_settings.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/equally_split.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/features.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/find.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/find_selectors.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/for_each.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/for_each_selectors.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/iterator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/list_partition.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/losertree.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/merge.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/multiseq_selection.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/multiway_merge.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/multiway_mergesort.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/numeric +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/numericfwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/omp_loop.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/omp_loop_static.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/par_loop.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/parallel.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/partial_sum.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/partition.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/queue.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/quicksort.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/random_number.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/random_shuffle.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/search.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/set_operations.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/settings.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/sort.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/tags.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/unique_copy.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/parallel/workstealing.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/array +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/bitset +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/deque +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/forward_list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_algos.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_container_size.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_hash_func.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_hashtable_size.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_list_to_slist.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_list_to_vector.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_map_to_unordered_map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_node.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_state.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_trace.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_vector_size.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/impl/profiler_vector_to_list.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/iterator_tracker.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/list +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/multimap.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/multiset.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/set.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/unordered_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/unordered_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/unordered_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/profile/vector +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/queue +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/random +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/ratio +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/regex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/scoped_allocator +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/sstream +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/stack +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/stdexcept +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/streambuf +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/string +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/system_error +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tgmath.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/thread +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/array +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/bessel_function.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/beta_function.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/ccomplex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cctype +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cfenv +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cfloat +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cinttypes +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/climits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cmath +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/complex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/complex.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cstdarg +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cstdbool +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cstdint +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cstdio +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cstdlib +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/ctgmath +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/ctime +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/ctype.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cwchar +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/cwctype +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/ell_integral.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/exp_integral.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/fenv.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/float.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/functional +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/functional_hash.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/gamma.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/hashtable.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/hashtable_policy.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/hypergeometric.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/inttypes.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/legendre_function.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/limits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/math.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/memory +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/modified_bessel_func.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/poly_hermite.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/poly_laguerre.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/random +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/random.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/random.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/regex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/riemann_zeta.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/shared_ptr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/special_function_util.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/stdarg.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/stdbool.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/stdint.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/stdio.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/stdlib.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/tgmath.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/tuple +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/type_traits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/unordered_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/unordered_map.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/unordered_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/unordered_set.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/utility +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/wchar.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr1/wctype.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr2/bool_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr2/bool_set.tcc +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr2/dynamic_bitset +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr2/ratio +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tr2/type_traits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/tuple +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/type_traits +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/typeindex +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/typeinfo +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/unordered_map +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/unordered_set +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/utility +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/valarray +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/vector +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/atomic_word.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/basic_file.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/c++allocator.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/c++config.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/c++io.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/c++locale.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/cpu_defines.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/ctype_base.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/ctype_inline.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/cxxabi_tweaks.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/error_constants.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/extc++.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/gthr-default.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/gthr-posix.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/gthr-single.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/gthr.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/messages_members.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/opt_random.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/os_defines.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/stdc++.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/stdtr1c++.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/bits/time_members.h +xtensa-lx106-elf/xtensa-lx106-elf/include/c++/${PKGVERSION}/xtensa-lx106-elf/ext/opt_random.h +xtensa-lx106-elf/xtensa-lx106-elf/include/complex.h +xtensa-lx106-elf/xtensa-lx106-elf/include/config.h +xtensa-lx106-elf/xtensa-lx106-elf/include/ctype.h +xtensa-lx106-elf/xtensa-lx106-elf/include/dirent.h +xtensa-lx106-elf/xtensa-lx106-elf/include/envlock.h +xtensa-lx106-elf/xtensa-lx106-elf/include/envz.h +xtensa-lx106-elf/xtensa-lx106-elf/include/errno.h +xtensa-lx106-elf/xtensa-lx106-elf/include/fastmath.h +xtensa-lx106-elf/xtensa-lx106-elf/include/fcntl.h +xtensa-lx106-elf/xtensa-lx106-elf/include/fenv.h +xtensa-lx106-elf/xtensa-lx106-elf/include/fnmatch.h +xtensa-lx106-elf/xtensa-lx106-elf/include/getopt.h +xtensa-lx106-elf/xtensa-lx106-elf/include/glob.h +xtensa-lx106-elf/xtensa-lx106-elf/include/grp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/iconv.h +xtensa-lx106-elf/xtensa-lx106-elf/include/ieeefp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/inttypes.h +xtensa-lx106-elf/xtensa-lx106-elf/include/langinfo.h +xtensa-lx106-elf/xtensa-lx106-elf/include/libgen.h +xtensa-lx106-elf/xtensa-lx106-elf/include/limits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/locale.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/_default_types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/_types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/ansi.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/endian.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/fastmath.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/ieeefp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/malloc.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/param.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/setjmp-dj.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/setjmp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/stdlib.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/termios.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/time.h +xtensa-lx106-elf/xtensa-lx106-elf/include/machine/types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/malloc.h +xtensa-lx106-elf/xtensa-lx106-elf/include/math.h +xtensa-lx106-elf/xtensa-lx106-elf/include/newlib.h +xtensa-lx106-elf/xtensa-lx106-elf/include/paths.h +xtensa-lx106-elf/xtensa-lx106-elf/include/pthread.h +xtensa-lx106-elf/xtensa-lx106-elf/include/pwd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/reent.h +xtensa-lx106-elf/xtensa-lx106-elf/include/regdef.h +xtensa-lx106-elf/xtensa-lx106-elf/include/regex.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sched.h +xtensa-lx106-elf/xtensa-lx106-elf/include/search.h +xtensa-lx106-elf/xtensa-lx106-elf/include/setjmp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/signal.h +xtensa-lx106-elf/xtensa-lx106-elf/include/spawn.h +xtensa-lx106-elf/xtensa-lx106-elf/include/stdatomic.h +xtensa-lx106-elf/xtensa-lx106-elf/include/stdint.h +xtensa-lx106-elf/xtensa-lx106-elf/include/stdio.h +xtensa-lx106-elf/xtensa-lx106-elf/include/stdio_ext.h +xtensa-lx106-elf/xtensa-lx106-elf/include/stdlib.h +xtensa-lx106-elf/xtensa-lx106-elf/include/string.h +xtensa-lx106-elf/xtensa-lx106-elf/include/strings.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/_default_fcntl.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/_intsup.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/_types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/cdefs.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/config.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/ctype.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/custom_file.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/dir.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/dirent.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/errno.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/fcntl.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/features.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/file.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/iconvnls.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/lock.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/param.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/pgmspace.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/queue.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/reent.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/resource.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/sched.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/signal.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/stat.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/stdio.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/string.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/syslimits.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/time.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/timeb.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/times.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/types.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/unistd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/utime.h +xtensa-lx106-elf/xtensa-lx106-elf/include/sys/wait.h +xtensa-lx106-elf/xtensa-lx106-elf/include/tar.h +xtensa-lx106-elf/xtensa-lx106-elf/include/termios.h +xtensa-lx106-elf/xtensa-lx106-elf/include/tgmath.h +xtensa-lx106-elf/xtensa-lx106-elf/include/time.h +xtensa-lx106-elf/xtensa-lx106-elf/include/unctrl.h +xtensa-lx106-elf/xtensa-lx106-elf/include/unistd.h +xtensa-lx106-elf/xtensa-lx106-elf/include/utime.h +xtensa-lx106-elf/xtensa-lx106-elf/include/utmp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/wchar.h +xtensa-lx106-elf/xtensa-lx106-elf/include/wctype.h +xtensa-lx106-elf/xtensa-lx106-elf/include/wordexp.h +xtensa-lx106-elf/xtensa-lx106-elf/include/xtensa/config/core-isa.h +xtensa-lx106-elf/xtensa-lx106-elf/lib/crt0.o +xtensa-lx106-elf/xtensa-lx106-elf/lib/libc.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libg.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libm.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libnosys.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libssp.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libssp.la +xtensa-lx106-elf/xtensa-lx106-elf/lib/libssp_nonshared.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libssp_nonshared.la +xtensa-lx106-elf/xtensa-lx106-elf/lib/libstdc++.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libstdc++.a-gdb.py +xtensa-lx106-elf/xtensa-lx106-elf/lib/libstdc++.la +xtensa-lx106-elf/xtensa-lx106-elf/lib/libsupc++.a +xtensa-lx106-elf/xtensa-lx106-elf/lib/libsupc++.la +xtensa-lx106-elf/xtensa-lx106-elf/lib/nosys.specs +@pkgdir xtensa-lx106-elf/xtensa-lx106-elf/include/rpc +@pkgdir xtensa-lx106-elf/xtensa-lx106-elf/include/bits +@pkgdir xtensa-lx106-elf/include diff --git a/cross/xtensa-lx106-elf-gcc/distinfo b/cross/xtensa-lx106-elf-gcc/distinfo new file mode 100644 index 00000000000..d4dbd43183b --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/distinfo @@ -0,0 +1,73 @@ +$NetBSD: distinfo,v 1.1 2019/09/20 15:20:20 bouyer Exp $ + +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-001-jump-tables-in-text-section-earlephilhower.patch) = 778f2754160401703ebbf38ebb0e14fb57ae764d +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-001-jump-tables-in-text-section-earlephilhower.patch) = 94a358ab55f5052764de76f1a743377ad40f2639 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-001-jump-tables-in-text-section-earlephilhower.patch) = 73328369fdeae393725be32d92fbdbdf58d3d9867b343c3a6fcc958e5b80eb819dddbe7f55ab3689e649419cbeca9a3d6089667305656d150086bd5d500210c0 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-001-jump-tables-in-text-section-earlephilhower.patch) = 486 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-ctype-inline-pgmread.patch) = e00e19676ca95e6338a851f74e57ca7caac32937 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-ctype-inline-pgmread.patch) = b3ef148379c279588df5ece785fd6e1feadcf112 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-ctype-inline-pgmread.patch) = 63c56dcc007300947492cfe7d24844e6897a937ef7065d6539bb83c219b55b9a1e09859deafbbb3a20c3cf14eb2902d2dd1afb676ab2ac189d4e4d7ab02b0f4e +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-ctype-inline-pgmread.patch) = 1873 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-docs.patch) = fcb99fa6e49f4debba556ea26b404e040f6aeff6 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-docs.patch) = f27b6485e338a9477c5a0acb320f46ccb9b2664b +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-docs.patch) = 6665354fae06e20c87a6fc3ce4739d5ee443559f1e3471a80019a2bc6e4aaa5f759df475b0365f72b2b68479fb3fd866be82e1f34fdb2f4d9ca6dddefc15d414 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-docs.patch) = 514 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-enable-mforcel32-eh.patch) = 792352d378f0099896cbe7665de7dedb40f2fa1b +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-enable-mforcel32-eh.patch) = 44da51c7294bc6c19ad67a7e25d20c268d06457d +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-enable-mforcel32-eh.patch) = 919a9d73fc79c77a72551b320f11da71b4ffe1c6680aa6367b08ba2fcaf11229e49f61492bc52c82b2fa94c9f27fe48c63e0396bb1280a40c6f112359fc7395c +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-enable-mforcel32-eh.patch) = 1334 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-emergency.patch) = 90283c9347976d4f94018c3e504fe303ca894ca4 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-emergency.patch) = 7c6f4b309cd9639013a6feb580231a3841623848 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-emergency.patch) = 4fb7bee02d0ca3a05c561a9a726934b1cdbe841fce37d790db5dbe4793eaf3b526b59f035a29b2d6672a22e232eb900d142dfe767c58849ce3e6e76e82184a33 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-emergency.patch) = 9527 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-what-to-pmem.patch) = 0f4ec6e7ca4b2428e27dcb269436952f549dc2ff +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-what-to-pmem.patch) = 30409fc2f06046c814c3c55ad6e68ca7b803a629 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-what-to-pmem.patch) = 170e5395e77f73fddb851cd0bcb4f383d4a613fc16cf0f86dafae9019801de2635042d37ee71ce5099c0fed0910860cf096680b176d5d1e08f79d451a611854c +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-exception-what-to-pmem.patch) = 28609 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-file-shortname.patch) = e8e3a3e52b68673e7446f6c2e2556ec5403b27de +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-file-shortname.patch) = 737e889727d9a53223d6f635104815860ab28ad5 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-file-shortname.patch) = 99a342958e121f3aaeb6db4d273334ac58e0dd8eba699af040e63ac0e44008b702edc3340d3daa92224e20ed6955f1fb0d6165e6f7467c02294f8134efbb574d +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-file-shortname.patch) = 692 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-defaults-h-gcc7.patch) = 1d02a38913a1dfb6d8c89b41067c5c91e81bc9d5 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-defaults-h-gcc7.patch) = b3d93507f06d48ec5a31ed3a3acc8ca59d8e9046 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-defaults-h-gcc7.patch) = dac8718a995fc1d5c63bddade3903a57e047aa22d2730b15c9ce6f8ba3f9f6194834cfc3988d37cc2b1c3792ad55bf2df536729d70fba1e5b0c08229912ec9b0 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-defaults-h-gcc7.patch) = 556 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-elfos-h-gcc7.patch) = 8585c8192bcb614fb8a2817d235a088493625b8b +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-elfos-h-gcc7.patch) = 58acb006a3cbf617145d2c60dd0ebefc86f513b4 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-elfos-h-gcc7.patch) = f56f85d4c0c4368fa12fb453c25bef6322ac553824af4320863351b4714c317c3547c1ed0c661dc00566ae6b595b113557ba62e6e9ecb1dbc7ea8a80e824442a +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-fix-elfos-h-gcc7.patch) = 907 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-gmpn_invert_limb.patch) = cd35d5978649ed9872841aa1a6e59d55c72130ec +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-gmpn_invert_limb.patch) = a43ece18df496cdbc06a33258f38cd4ffd20d204 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-gmpn_invert_limb.patch) = e58398a36b077f58699c1a6581daec47f10c661af67506b9c7336b985bc2269abcb3f37b327c2dfebeb4917edfcf242450528104a76405cb0fa6335e6e9d2c18 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-gmpn_invert_limb.patch) = 4481 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-libc_name_p-fix.patch) = 3d011ed5e71d31b76ac9a387ebe8fa8050b2c64e +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-libc_name_p-fix.patch) = 4f3e7fd5b8be632a8ba3364779438a4d82d26f93 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-libc_name_p-fix.patch) = 5e2023993cfb5c6c7dda75c3f91f733b71cf53b3a79a586bd1997f1cb77a897e5699708c818a593e3fa29013c5ed0db15d4f6514f8076fc9716d20ee05231502 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-libc_name_p-fix.patch) = 4748 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-mforce-l32-jcmvbkbc.patch) = 6eee31c7bad12ac856902e7ca2b217b400d45463 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-mforce-l32-jcmvbkbc.patch) = 902744d81fa371fc31611ad641450f8f74c880f0 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-mforce-l32-jcmvbkbc.patch) = 7e70ae286f4e32ec65f369504e0e95467b1d1af4527d44c442b71bcb7ef4e1e9b1ba0c1bada6141293c182c348cd6b857d82794baf83c179d49cb8ba31964346 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-mforce-l32-jcmvbkbc.patch) = 8153 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-osx-malloc.patch) = a05709f5a4f22ebddae3c70feadf34be1a14b2e2 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-osx-malloc.patch) = 0d3f71e35b432e73b625630da3c7318fbccb97ae +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-osx-malloc.patch) = 8ac8308b1324d10899f93ecd5075ece6fba3372d863941520f3075a6fa9b8d24b4e2c7bc8b9c5817990107440e324ca7d214bc7d28dd94b1b970e40137c38f5f +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-osx-malloc.patch) = 692 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-stdcsupp-safe.patch) = 0c6c65a0fa73e0575de5ab63429f763af3c93f2f +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-stdcsupp-safe.patch) = 13d9f448bac95920bca2e6b39fa6896aed28a019 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-stdcsupp-safe.patch) = 5d8feee5119f23349d6473b4979829d7daf42b2cccbfcf9b7369649966dd0dd7f4876f79a2b4ff8d56ad39dca204d90b97e75780ccb38c9faafaaea8abd7613b +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-stdcsupp-safe.patch) = 4469 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-unwind-safe.patch) = 2ce32cd62d6daa6902728c087d3ce05bc29ec8e7 +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-unwind-safe.patch) = 9e8f17e34f48b750209ce61d8a6143492b58f9da +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-unwind-safe.patch) = 3ca995675e1f3d7601fbd9adc372381b972daaad5513bbb677d1421372aab24b1912b80a8c021eb064bfe740bf0e6b0476368dfe1a95f5a257cf98cafa7312dd +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-unwind-safe.patch) = 1995 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/gcc-xtensa-4.8.2-a0936f8b396491bc7894c8bc5e80971cc9138e94.tar.gz) = 23052c71548baf74d73c3f528b3bc098a4c76f7b +RMD160 (xtensa-lx106-elf-gcc-4.8.2/gcc-xtensa-4.8.2-a0936f8b396491bc7894c8bc5e80971cc9138e94.tar.gz) = 8c100878918b209d7e1b88304130de8327074488 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/gcc-xtensa-4.8.2-a0936f8b396491bc7894c8bc5e80971cc9138e94.tar.gz) = 7e14b7fc29d7a9375a338ad82544132d25c2aca0049d88987ce6386d677c53984e52d6e3c618be45dba166a5b36eb1eb14f23b8309a57a003ed90b604dc24fa6 +Size (xtensa-lx106-elf-gcc-4.8.2/gcc-xtensa-4.8.2-a0936f8b396491bc7894c8bc5e80971cc9138e94.tar.gz) = 100747695 bytes +SHA1 (xtensa-lx106-elf-gcc-4.8.2/newlib-xtensa-2_2_0-lock-arduino_20190913.tar.gz) = 1f078fb7ac909349c5111f6cdffc07b01a3945ed +RMD160 (xtensa-lx106-elf-gcc-4.8.2/newlib-xtensa-2_2_0-lock-arduino_20190913.tar.gz) = d258a92c7996e03e5afe855d58e0cccbfd9a92f3 +SHA512 (xtensa-lx106-elf-gcc-4.8.2/newlib-xtensa-2_2_0-lock-arduino_20190913.tar.gz) = 1ceb1b647118867750016b686b9e2fb4d1a32313e2a09f80ead27fee5a42bc59e7b636c062655910436ece6a11134449ab0200844461ed28f2c3fdfb2f4266bc +Size (xtensa-lx106-elf-gcc-4.8.2/newlib-xtensa-2_2_0-lock-arduino_20190913.tar.gz) = 16391268 bytes +SHA1 (patch-gcc_Makefile.in) = ac4709b2399a0037a4a56c414518657886cbebc5 +SHA1 (patch-gcc_system.h) = 72a75ff773b9b5f3d2f16f4ec7d29e032aba5f53 +SHA1 (patch-newlib_libc_include_limits.h) = 844d746ba9802071ec60da5f2fb73a2409c9e01a diff --git a/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_Makefile.in b/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_Makefile.in new file mode 100644 index 00000000000..7d65bed3997 --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_Makefile.in @@ -0,0 +1,149 @@ +$NetBSD: patch-gcc_Makefile.in,v 1.1 2019/09/20 15:20:20 bouyer Exp $ + +Don't install the gcc limits.h; the newlib one is good and has mode defines + +--- gcc/Makefile.in.orig 2019-06-19 06:25:14.000000000 +0200 ++++ gcc/Makefile.in 2019-09-20 12:57:38.306679270 +0200 +@@ -4074,7 +4074,6 @@ + # the time stamp when we regenerate, to prevent pointless rebuilds during + # e.g. install-no-fixedincludes. + -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi +- -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi + for file in .. $(USER_H); do \ + if [ X$$file != X.. ]; then \ + realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ +@@ -4110,27 +4109,6 @@ + cp $(srcdir)/ginclude/stdint-gcc.h include/stdint.h; \ + chmod a+r include/stdint.h; \ + fi +- set -e; for ml in `cat fixinc_list`; do \ +- sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ +- multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ +- fix_dir=include-fixed$${multi_dir}; \ +- if $(LIMITS_H_TEST) ; then \ +- cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \ +- else \ +- cat $(srcdir)/glimits.h > tmp-xlimits.h; \ +- fi; \ +- $(mkinstalldirs) $${fix_dir}; \ +- chmod a+rx $${fix_dir} || true; \ +- $(SHELL) $(srcdir)/../move-if-change \ +- tmp-xlimits.h tmp-limits.h; \ +- rm -f $${fix_dir}/limits.h; \ +- cp -p tmp-limits.h $${fix_dir}/limits.h; \ +- chmod a+r $${fix_dir}/limits.h; \ +- done +-# Install the README +- rm -f include-fixed/README +- cp $(srcdir)/../fixincludes/README-fixinc include-fixed/README +- chmod a+r include-fixed/README + $(STAMP) $@ + + .PHONY: install-gcc-tooldir +@@ -4188,42 +4166,6 @@ + stmp-fixinc: gsyslimits.h macro_list fixinc_list \ + $(build_objdir)/fixincludes/fixincl \ + $(build_objdir)/fixincludes/fixinc.sh +- rm -rf include-fixed; mkdir include-fixed +- -chmod a+rx include-fixed +- if [ -d ../prev-gcc ]; then \ +- cd ../prev-gcc && \ +- $(MAKE) real-$(INSTALL_HEADERS_DIR) DESTDIR=`pwd`/../gcc/ \ +- libsubdir=. ; \ +- else \ +- set -e; for ml in `cat fixinc_list`; do \ +- sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ +- multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ +- fix_dir=include-fixed$${multi_dir}; \ +- if ! $(inhibit_libc) && test ! -d ${SYSTEM_HEADER_DIR}; then \ +- echo The directory that should contain system headers does not exist: >&2 ; \ +- echo " ${SYSTEM_HEADER_DIR}" >&2 ; \ +- tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \ +- if test "x${SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \ +- then sleep 1; else exit 1; fi; \ +- fi; \ +- $(mkinstalldirs) $${fix_dir}; \ +- chmod a+rx $${fix_dir} || true; \ +- (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \ +- SHELL='$(SHELL)'; MACRO_LIST=`${PWD_COMMAND}`/macro_list ; \ +- gcc_dir=`${PWD_COMMAND}` ; \ +- export TARGET_MACHINE srcdir SHELL MACRO_LIST && \ +- cd $(build_objdir)/fixincludes && \ +- $(SHELL) ./fixinc.sh "$${gcc_dir}/$${fix_dir}" \ +- $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS) ); \ +- rm -f $${fix_dir}/syslimits.h; \ +- if [ -f $${fix_dir}/limits.h ]; then \ +- mv $${fix_dir}/limits.h $${fix_dir}/syslimits.h; \ +- else \ +- cp $(srcdir)/gsyslimits.h $${fix_dir}/syslimits.h; \ +- fi; \ +- chmod a+r $${fix_dir}/syslimits.h; \ +- done; \ +- fi + $(STAMP) stmp-fixinc + # + +@@ -4785,20 +4727,6 @@ + + # Install all the header files built in the include subdirectory. + install-headers: $(INSTALL_HEADERS_DIR) +-# Fix symlinks to absolute paths in the installed include directory to +-# point to the installed directory, not the build directory. +-# Don't need to use LN_S here since we really do need ln -s and no substitutes. +- -files=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \ +- if [ $$? -eq 0 ]; then \ +- dir=`cd include-fixed; ${PWD_COMMAND}`; \ +- for i in $$files; do \ +- dest=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \ +- if expr "$$dest" : "$$dir.*" > /dev/null; then \ +- rm -f $(DESTDIR)$(libsubdir)/include-fixed/$$i; \ +- ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include-fixed/$$i; \ +- fi; \ +- done; \ +- fi + + # Create or recreate the gcc private include file directory. + install-include-dir: installdirs +@@ -4822,8 +4750,6 @@ + # output of `cd', but some shells lose on redirection within `()'s + (cd `${PWD_COMMAND}`/include ; \ + tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - ) +- (cd `${PWD_COMMAND}`/include-fixed ; \ +- tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - ) + # /bin/sh on some systems returns the status of the first tar, + # and that can lose with GNU tar which always writes a full block. + # So use `exit 0' to ignore its exit status. +@@ -4833,25 +4759,17 @@ + # See discussion about the use of `pwd` above + cd `${PWD_COMMAND}`/include ; \ + find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include +- cd `${PWD_COMMAND}`/include-fixed ; \ +- find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed + + # Install the include directory using cp. + install-headers-cp: stmp-int-hdrs install-include-dir + cp -p -r include $(DESTDIR)$(libsubdir) +- cp -p -r include-fixed $(DESTDIR)$(libsubdir) + + # Targets without dependencies, for use in prev-gcc during bootstrap. + real-install-headers-tar: +- (cd `${PWD_COMMAND}`/include-fixed ; \ +- tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - ) + + real-install-headers-cpio: +- cd `${PWD_COMMAND}`/include-fixed ; \ +- find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed + + real-install-headers-cp: +- cp -p -r include-fixed $(DESTDIR)$(libsubdir) + + # Install supporting files for fixincludes to be run later. + install-mkheaders: stmp-int-hdrs install-itoolsdirs \ +@@ -4863,7 +4781,6 @@ + set -e; for ml in `cat fixinc_list`; do \ + multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ + $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \ +- $(INSTALL_DATA) include-fixed$${multidir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \ + done + $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \ + $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \ diff --git a/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_system.h b/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_system.h new file mode 100644 index 00000000000..29da685990a --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/patches/patch-gcc_system.h @@ -0,0 +1,14 @@ +$NetBSD: patch-gcc_system.h,v 1.1 2019/09/20 15:20:20 bouyer 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 diff --git a/cross/xtensa-lx106-elf-gcc/patches/patch-newlib_libc_include_limits.h b/cross/xtensa-lx106-elf-gcc/patches/patch-newlib_libc_include_limits.h new file mode 100644 index 00000000000..ec7af5defce --- /dev/null +++ b/cross/xtensa-lx106-elf-gcc/patches/patch-newlib_libc_include_limits.h @@ -0,0 +1,23 @@ +$NetBSD: patch-newlib_libc_include_limits.h,v 1.1 2019/09/20 15:20:20 bouyer Exp $ +Don't try to use gcc's limits.h, we're not installing it. + +--- newlib/libc/include/limits.h.orig 2019-09-20 12:42:00.178019535 +0200 ++++ newlib/libc/include/limits.h 2019-09-20 12:42:51.347562979 +0200 +@@ -16,7 +16,7 @@ + + /* if do not have #include_next support, then we + have to define the limits here. */ +-# if !defined __GNUC__ || __GNUC__ < 2 ++# if !defined __GNUC__ || __GNUC__ < 2 || 1 + + # ifndef _LIMITS_H + # define _LIMITS_H 1 +@@ -126,7 +126,7 @@ + + #endif /* !_LIBC_LIMITS_H_ */ + +-#if defined __GNUC__ && !defined _GCC_LIMITS_H_ ++#if defined __GNUC__ && !defined _GCC_LIMITS_H_ && 0 + /* `_GCC_LIMITS_H_' is what GCC's file defines. */ + # include_next <limits.h> + #endif /* __GNUC__ && !_GCC_LIMITS_H_ */ |