pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/cross/xtensa-esp32-elf-gcc xtensa-esp32-elf-gcc: impor...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bf5bdacc06e5
branches:  trunk
changeset: 331732:bf5bdacc06e5
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Sun Mar 24 11:58:04 2019 +0000

description:
xtensa-esp32-elf-gcc: import xtensa-esp32-elf-gcc-8.2.0

Cross GCC for Espressif ESP32 bare metal environment.

diffstat:

 cross/xtensa-esp32-elf-gcc/DESCR                                         |     1 +
 cross/xtensa-esp32-elf-gcc/Makefile                                      |    76 +
 cross/xtensa-esp32-elf-gcc/PLIST                                         |  1378 ++++++++++
 cross/xtensa-esp32-elf-gcc/distinfo                                      |    17 +
 cross/xtensa-esp32-elf-gcc/patches/patch-configure                       |    16 +
 cross/xtensa-esp32-elf-gcc/patches/patch-contrib_download__prerequisites |    15 +
 cross/xtensa-esp32-elf-gcc/patches/patch-gcc_system.h                    |    14 +
 7 files changed, 1517 insertions(+), 0 deletions(-)

diffs (truncated from 1545 to 300 lines):

diff -r 275a90aea49e -r bf5bdacc06e5 cross/xtensa-esp32-elf-gcc/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/cross/xtensa-esp32-elf-gcc/DESCR  Sun Mar 24 11:58:04 2019 +0000
@@ -0,0 +1,1 @@
+Cross GCC for Espressif ESP32 bare metal environment.
diff -r 275a90aea49e -r bf5bdacc06e5 cross/xtensa-esp32-elf-gcc/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/cross/xtensa-esp32-elf-gcc/Makefile       Sun Mar 24 11:58:04 2019 +0000
@@ -0,0 +1,76 @@
+# $NetBSD: Makefile,v 1.1 2019/03/24 11:58:04 tnn Exp $
+
+# We could use the upstream GCC distfile, but Espressif has important vendor
+# patches in their branch and it seems not worth the maintenance overhead to
+# extract them and put them in pkgsrc.
+# See: https://github.com/espressif/gcc/commits/esp32-2018r1_gcc-8_2_0
+#DISTNAME=             gcc-8.3.0
+#MASTER_SITES=         ${MASTER_SITE_GNU:=gcc/gcc-${PKGVERSION_NOREV}/}
+#EXTRACT_SUFX=         .tar.xz
+
+DISTNAME=              espressif-gcc-8.2.0
+PKGNAME=               ${DISTNAME:C/.*gcc/xtensa-esp32-elf-gcc/}
+CATEGORIES=            cross
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=espressif/}
+GITHUB_PROJECT=                gcc
+GITHUB_TAG=            bae67e9ef3c3dea93a7cd169a475e05c8013f00b
+# Espressif overlays
+DISTFILES=             ${DEFAULT_DISTFILES}
+DISTFILES+=            crosstool-ng-esp32-2018r1.tar.gz
+SITES.crosstool-ng-esp32-2018r1.tar.gz=        -https://github.com/espressif/crosstool-NG/archive/0a6745d4ed60aaa41a812ecf777ef062e2c76354.tar.gz
+# Custom ESP32 newlib
+DISTFILES+=            newlib-${NEWLIBVER}.tar.gz
+NEWLIBVER=             esp32-2018r1_newlib-2_2_0
+SITES.newlib-${NEWLIBVER}.tar.gz=      -https://github.com/espressif/newlib-esp32/archive/fdbb7b81e963283abb4915e2da873fc248ecd47a.tar.gz
+
+MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/espressif/gcc
+COMMENT=               Cross GCC for Espressif ESP32 bare metal environment
+LICENSE=               gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
+
+DEPENDS+=      xtensa-esp32-elf-binutils-[0-9]*:../../cross/xtensa-esp32-elf-binutils
+
+GNU_CONFIGURE=         yes
+INFO_FILES=            yes
+USE_LANGUAGES+=                c c++
+USE_TOOLS+=            bash gmake makeinfo perl
+
+# for http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33549
+# use makeinfo from pkgsrc/devel/gtexinfo.
+TOOL_DEPENDS+=         gtexinfo>=5.1:../../devel/gtexinfo
+_TOOLS_USE_PKGSRC.makeinfo=yes
+
+OBJDIR=                        ../build
+CONFIGURE_DIRS=                ${OBJDIR}
+CONFIGURE_SCRIPT=      ${WRKSRC}/configure
+CONFIG_SHELL=          ${TOOLS_PATH.bash}
+WRAPPER_SHELL=         ${TOOLS_PATH.bash}
+GNU_CONFIGURE_PREFIX=  ${PREFIX}/xtensa-esp32-elf
+
+CONFIGURE_ARGS+=       --target=xtensa-esp32-elf
+CONFIGURE_ARGS+=       --enable-languages=c,c++
+CONFIGURE_ARGS+=       --with-newlib
+CONFIGURE_ARGS+=       --enable-multiarch
+CONFIGURE_ARGS+=       --disable-nls
+CONFIGURE_ARGS+=       --disable-libstdcxx-pch
+CONFIGURE_ARGS+=       --disable-libstdcxx-verbose
+CONFIGURE_ARGS+=       --disable-__cxa_atexit
+CONFIGURE_ARGS+=       --enable-cxx-flags="-fno-rtti -ffunction-sections"
+CONFIGURE_ARGS+=       --enable-target-optspace
+CONFIGURE_ARGS+=       --disable-libquadmath
+CONFIGURE_ARGS+=       --disable-libssp
+CONFIGURE_ARGS+=       --without-long-double-128
+CONFIGURE_ARGS+=       --enable-gcov-custom-rtio
+
+post-extract:
+       ${CP} -r ${WRKDIR}/crosstool-NG*/overlays/xtensa_esp32/gcc/. ${WRKSRC}/.
+       ${LN} -s ${WRKDIR}/newlib-*/newlib ${WRKSRC}/newlib
+       ${LN} -s ${WRKDIR}/newlib-*/libgloss ${WRKSRC}/libgloss
+
+pre-configure:
+       ${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR}
+
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../math/mpfr/buildlink3.mk"
+.include "../../math/mpcomplex/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 275a90aea49e -r bf5bdacc06e5 cross/xtensa-esp32-elf-gcc/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/cross/xtensa-esp32-elf-gcc/PLIST  Sun Mar 24 11:58:04 2019 +0000
@@ -0,0 +1,1378 @@
+@comment $NetBSD: PLIST,v 1.1 2019/03/24 11:58:04 tnn Exp $
+xtensa-esp32-elf/bin/xtensa-esp32-elf-c++
+xtensa-esp32-elf/bin/xtensa-esp32-elf-cpp
+xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
+xtensa-esp32-elf/bin/${PKGNAME}
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-nm
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov-dump
+xtensa-esp32-elf/bin/xtensa-esp32-elf-gcov-tool
+xtensa-esp32-elf/info/cpp.info
+xtensa-esp32-elf/info/cppinternals.info
+xtensa-esp32-elf/info/gcc.info
+xtensa-esp32-elf/info/gccinstall.info
+xtensa-esp32-elf/info/gccint.info
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/libgcov.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/README
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/limits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include-fixed/syslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/float.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/gcov.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/iso646.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdalign.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdarg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdatomic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdbool.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stddef.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdfix.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdint-gcc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdint.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/stdnoreturn.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/tgmath.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/unwind.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/include/varargs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/fixinc_list
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/gsyslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/include/README
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/include/limits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/macro_list
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/install-tools/mkheaders.conf
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/libgcov.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/gtype.state
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ada/gcc-interface/ada-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/addresses.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/alias.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/all-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/alloc-pool.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ansidecl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/asan.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/attribs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/auto-host.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/auto-profile.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/b-header-vars
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/backend.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/basic-block.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bb-reorder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bitmap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/brig-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtin-attrs.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtin-types.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/builtins.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/bversion.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-common.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-objc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-pragma.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-family/c-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/c-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/calls.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ccmp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfg-flags.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfganal.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgbuild.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgcleanup.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgexpand.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfghooks.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgloop.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgloopmanip.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cfgrtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cgraph.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/chkp-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cif-code.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect-utils.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect2-aix.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/collect2.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/color-macros.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/conditions.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/dbxelf.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/elfos.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/initfini-array.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/newlib-stdint.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/elf.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa-protos.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/config/xtensa/xtensa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/configargs.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/context.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/convert.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/coretypes.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/coverage.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cp-tree.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cp-tree.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/cxx-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/name-lookup.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/operators.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cp/type-utils.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cppbuiltin.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cppdefault.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cpplib.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/cselib.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/data-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbgcnt.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbgcnt.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dbxout.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dce.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ddg.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/debug.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/defaults.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/df.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dfp.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic-color.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic-core.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/diagnostic.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dojump.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dominance.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/domwalk.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/double-int.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dumpfile.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dwarf2asm.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/dwarf2out.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/edit-context.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/emit-rtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/errors.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/et-forest.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/except.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/explow.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/expmed.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/expr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fibonacci_heap.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/file-find.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/file-prefix-map.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/filenames.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fixed-value.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/flag-types.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/flags.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fold-const-call.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/fold-const.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/function.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-plugin.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-rich-location.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc-symtab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcov-counter.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcov-io.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcse-common.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gcse.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/generic-match.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gengtype.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/genrtl.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gensupport.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ggc-internal.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/ggc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-builder.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-expr.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-fold.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-iterator.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-low.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-match.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-predict.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-pretty-print.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa-evrp-analyze.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa-warn-restrict.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-ssa.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-streamer.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple-walk.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimple.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimplify-me.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gimplify.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/glimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graph.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graphds.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/graphite.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsstruct.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gstab.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsyms.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gsyslimits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gtm-builtins.def
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/gtype-desc.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hard-reg-set.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-map-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-map.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-set.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-table.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hash-traits.h
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/plugin/include/hashtab.h



Home | Main Index | Thread Index | Old Index