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: updat...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c8140d904998
branches:  trunk
changeset: 376809:c8140d904998
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Thu Apr 14 00:50:00 2022 +0000

description:
xtensa-esp32-elf-gcc: update to GCC 8.4.0 w/ esp-2021r2-patch3

Changes unknown.

diffstat:

 cross/xtensa-esp32-elf-gcc/Makefile                                      |  80 +-------
 cross/xtensa-esp32-elf-gcc/Makefile.common                               |  97 ++++++++++
 cross/xtensa-esp32-elf-gcc/PLIST                                         |  91 +++++++++-
 cross/xtensa-esp32-elf-gcc/distinfo                                      |  24 +-
 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-newlib_libc_posix_collate.c     |  14 +
 cross/xtensa-esp32-elf-gcc/patches/patch-newlib_libc_posix_regcomp.c     |  14 +
 8 files changed, 229 insertions(+), 122 deletions(-)

diffs (truncated from 463 to 300 lines):

diff -r 34785e13086b -r c8140d904998 cross/xtensa-esp32-elf-gcc/Makefile
--- a/cross/xtensa-esp32-elf-gcc/Makefile       Wed Apr 13 23:43:32 2022 +0000
+++ b/cross/xtensa-esp32-elf-gcc/Makefile       Thu Apr 14 00:50:00 2022 +0000
@@ -1,81 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2021/05/24 19:49:28 wiz 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
+# $NetBSD: Makefile,v 1.9 2022/04/14 00:50:00 tnn Exp $
 
-DISTNAME=              espressif-gcc-8.2.0
-PKGREVISION=           5
-PKGNAME=               ${DISTNAME:C/.*gcc/xtensa-esp32-elf-gcc/}
-CATEGORIES=            cross
-MASTER_SITES=          ${MASTER_SITE_GITHUB:=espressif/}
-GITHUB_PROJECT=                gcc
-GITHUB_TAG=            35d9a8eb86910a6acac7579f22f8e88a92dbb251
-# Espressif overlays
-DISTFILES=             ${DEFAULT_DISTFILES}
-DISTFILES+=            crosstool-ng-esp32-2019r1.tar.gz
-SITES.crosstool-ng-esp32-2019r1.tar.gz=        \
-       -https://github.com/espressif/crosstool-NG/archive/ce035ad3351127e4fdb3ff96790caba42b9f1aa3.tar.gz
-# Custom ESP32 newlib
-DISTFILES+=            newlib-${NEWLIBVER}.tar.gz
-NEWLIBVER=             esp32-2019r1_newlib-3_0_0
-SITES.newlib-${NEWLIBVER}.tar.gz= \
-       -https://github.com/espressif/newlib-esp32/archive/46a44cc1111687d8297e35f9766493abd291e5cc.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
+ESP32_TYPE=    esp32
 
-# 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
+.include "${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/Makefile.common"
 
-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 -mlongcalls"
-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
-
-CHECK_PORTABILITY_SKIP+=       contrib/*
-
-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 34785e13086b -r c8140d904998 cross/xtensa-esp32-elf-gcc/Makefile.common
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/cross/xtensa-esp32-elf-gcc/Makefile.common        Thu Apr 14 00:50:00 2022 +0000
@@ -0,0 +1,97 @@
+# $NetBSD: Makefile.common,v 1.1 2022/04/14 00:50:00 tnn Exp $
+
+# used by cross/xtensa-esp32-elf-gcc/Makefile
+# used by cross/xtensa-esp32s2-elf-gcc/Makefile
+# used by cross/xtensa-esp32s3-elf-gcc/Makefile
+
+# 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.
+#DISTNAME=             gcc-8.3.0
+#MASTER_SITES=         ${MASTER_SITE_GNU:=gcc/gcc-${PKGVERSION_NOREV}/}
+#EXTRACT_SUFX=         .tar.xz
+
+DISTNAME=              espressif-gcc-8.4.0
+PKGNAME=               ${DISTNAME:C/.*gcc/xtensa-${ESP32_TYPE}-elf-gcc/}
+CATEGORIES=            cross
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=espressif/}
+GITHUB_PROJECT=                gcc
+GITHUB_TAG=            f9333cfc1a790dff864aea3478cb862cc442be30
+# Espressif overlays
+DISTFILES=             ${DEFAULT_DISTFILES}
+DISTFILES+=            crosstool-NG-esp-2021r2-patch3.tar.gz
+SITES.crosstool-NG-esp-2021r2-patch3.tar.gz=   \
+       -https://github.com/espressif/crosstool-NG/releases/download/esp-2021r2-patch3/crosstool-NG-esp-2021r2-patch3.tar.gz
+# Custom ESP32 newlib
+DISTFILES+=            newlib-${NEWLIBVER}.tar.gz
+NEWLIBVER=             esp32-2021r2-patch3_newlib-3_3_0
+SITES.newlib-${NEWLIBVER}.tar.gz= \
+       -https://github.com/espressif/newlib-esp32/archive/8a3197a2a9a42dd99605cf8cc1e0f2d3c976c58c.tar.gz
+
+MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/espressif/gcc
+COMMENT=               Cross GCC for Espressif ${ESP32_TYPE:tu} bare metal environment
+LICENSE=               gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
+
+DEPENDS+=      xtensa-${ESP32_TYPE}-elf-binutils>=2.35.2:../../cross/xtensa-${ESP32_TYPE}-elf-binutils
+
+GNU_CONFIGURE=         yes
+INFO_FILES=            yes
+USE_LANGUAGES+=                c c++
+USE_TOOLS+=            bash gmake makeinfo perl
+
+PATCHDIR=      ${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/patches
+DISTINFO_FILE= ${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/distinfo
+DESCR_SRC=     ${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/DESCR
+
+# 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_TYPE}-elf
+
+# This is based on "gcc -v" output from the binary release
+# xtensa-esp32-elf-gcc8_4_0-esp-2021r2-patch3-linux-amd64.tar.gz
+CONFIGURE_ARGS+=       --target=xtensa-${ESP32_TYPE}-elf
+CONFIGURE_ARGS+=       --with-newlib
+CONFIGURE_ARGS+=       --enable-threads=no
+CONFIGURE_ARGS+=       --disable-shared
+CONFIGURE_ARGS+=       --disable-__cxa_atexit
+CONFIGURE_ARGS+=       --enable-cxx-flags="-ffunction-sections"
+CONFIGURE_ARGS+=       --disable-libgomp
+CONFIGURE_ARGS+=       --disable-libmudflap
+CONFIGURE_ARGS+=       --disable-libmpx
+CONFIGURE_ARGS+=       --disable-libssp
+CONFIGURE_ARGS+=       --disable-libquadmath
+CONFIGURE_ARGS+=       --disable-libquadmath-support
+CONFIGURE_ARGS+=       --enable-lto
+CONFIGURE_ARGS+=       --enable-target-optspace
+CONFIGURE_ARGS+=       --without-long-double-128
+CONFIGURE_ARGS+=       --disable-nls
+CONFIGURE_ARGS+=       --enable-multiarch
+CONFIGURE_ARGS+=       --enable-languages=c,c++
+CONFIGURE_ARGS+=       --disable-libstdcxx-verbose
+CONFIGURE_ARGS+=       --enable-threads=posix
+CONFIGURE_ARGS+=       --enable-gcov-custom-rtio
+CONFIGURE_ARGS+=       --enable-libstdcxx-time=yes
+
+CHECK_PORTABILITY_SKIP+=       contrib/*
+
+post-extract:
+       mv ${WRKDIR}/newlib-*/newlib ${WRKSRC}/newlib
+       mv ${WRKDIR}/newlib-*/libgloss ${WRKSRC}/libgloss
+       ${CP} -r ${WRKDIR}/overlays/xtensa_${ESP32_TYPE}/gcc/. ${WRKSRC}/.
+       ${CP} -r ${WRKDIR}/overlays/xtensa_${ESP32_TYPE}/newlib/. ${WRKSRC}/.
+
+pre-configure:
+       ${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR}
+
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../math/mpfr/buildlink3.mk"
+.include "../../math/mpcomplex/buildlink3.mk"
diff -r 34785e13086b -r c8140d904998 cross/xtensa-esp32-elf-gcc/PLIST
--- a/cross/xtensa-esp32-elf-gcc/PLIST  Wed Apr 13 23:43:32 2022 +0000
+++ b/cross/xtensa-esp32-elf-gcc/PLIST  Thu Apr 14 00:50:00 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2019/05/27 17:31:14 tnn Exp $
+@comment $NetBSD: PLIST,v 1.3 2022/04/14 00:50:00 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++
@@ -25,6 +25,12 @@
 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}/esp32-psram/no-rtti/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/no-rtti/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/no-rtti/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/no-rtti/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/no-rtti/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/esp32-psram/no-rtti/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
@@ -51,6 +57,12 @@
 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}/no-rtti/crtbegin.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/no-rtti/crtend.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/no-rtti/crti.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/no-rtti/crtn.o
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/no-rtti/libgcc.a
+xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/${PKGVERSION}/no-rtti/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
@@ -105,6 +117,7 @@
 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-opts.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
@@ -1256,7 +1269,53 @@
 xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/stdtr1c++.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/bits/time_members.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/ext/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/atomic_word.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/basic_file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/c++allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/c++config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/c++io.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/c++locale.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/cpu_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/ctype_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/ctype_inline.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/cxxabi_tweaks.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/error_constants.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/extc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/gthr-default.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/gthr-posix.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/gthr-single.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/gthr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/messages_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/os_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/stdc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/stdtr1c++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/bits/time_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/esp32-psram/no-rtti/ext/opt_random.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/ext/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/atomic_word.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/basic_file.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/c++allocator.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/c++config.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/c++io.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/c++locale.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/cpu_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/ctype_base.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/ctype_inline.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/cxxabi_tweaks.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/error_constants.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/extc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/gthr-default.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/gthr-posix.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/gthr-single.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/gthr.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/messages_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/opt_random.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/os_defines.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/stdc++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/stdtr1c++.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/bits/time_members.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/c++/${PKGVERSION}/xtensa-esp32-elf/no-rtti/ext/opt_random.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/complex.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/config.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/cpio.h
@@ -1301,6 +1360,7 @@
 xtensa-esp32-elf/xtensa-esp32-elf/include/malloc.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/math.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/memory.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/ndbm.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/newlib.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/paths.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/pthread.h
@@ -1329,6 +1389,7 @@
 xtensa-esp32-elf/xtensa-esp32-elf/include/strings.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_default_fcntl.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_intsup.h
+xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_locale.h
 xtensa-esp32-elf/xtensa-esp32-elf/include/sys/_pthreadtypes.h



Home | Main Index | Thread Index | Old Index