Received: by mail.netbsd.org (Postfix, from userid 605) id EA24285074; Fri, 22 Jul 2022 02:01:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B7BD85074 for ; Fri, 22 Jul 2022 02:01:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id OPUgbNrtMkjE for ; Fri, 22 Jul 2022 02:01:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 61CBD84E59 for ; Fri, 22 Jul 2022 02:01:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5B0F6FB1A; Fri, 22 Jul 2022 02:01:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165845531513860" MIME-Version: 1.0 Date: Fri, 22 Jul 2022 02:01:55 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/cross To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220722020155.5B0F6FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165845531513860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri Jul 22 02:01:55 UTC 2022 Modified Files: pkgsrc/cross/xtensa-esp32-elf-gcc: Makefile Makefile.common PLIST distinfo pkgsrc/cross/xtensa-esp32s2-elf-gcc: Makefile PLIST pkgsrc/cross/xtensa-esp32s3-elf-gcc: Makefile PLIST Log Message: xtensa-esp32-elf-gcc: configure newlib closer to how espressif does To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common cvs rdiff -u -r1.3 -r1.4 pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile \ pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST cvs rdiff -u -r1.1 -r1.2 pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile \ pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165845531513860 Content-Disposition: inline Content-Length: 21936 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile diff -u pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile:1.10 pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile:1.11 --- pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile:1.10 Tue Jun 28 11:31:16 2022 +++ pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile Fri Jul 22 02:01:54 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2022/06/28 11:31:16 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2022/07/22 02:01:54 tnn Exp $ +PKGREVISION= 2 ESP32_TYPE= esp32 -PKGREVISION= 1 .include "${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/Makefile.common" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common diff -u pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common:1.2 pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common:1.3 --- pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common:1.2 Thu Apr 14 13:11:49 2022 +++ pkgsrc/cross/xtensa-esp32-elf-gcc/Makefile.common Fri Jul 22 02:01:54 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2022/04/14 13:11:49 tnn Exp $ +# $NetBSD: Makefile.common,v 1.3 2022/07/22 02:01:54 tnn Exp $ # used by cross/xtensa-esp32-elf-gcc/Makefile # used by cross/xtensa-esp32s2-elf-gcc/Makefile @@ -24,9 +24,9 @@ SITES.crosstool-NG-esp-2021r2-patch3.tar -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 +NEWLIBVER= esp32-2021r2-patch3_newlib-3_3_0-9e1cbb81 SITES.newlib-${NEWLIBVER}.tar.gz= \ - -https://github.com/espressif/newlib-esp32/archive/8a3197a2a9a42dd99605cf8cc1e0f2d3c976c58c.tar.gz + -https://github.com/espressif/newlib-esp32/archive/9e1cbb8144de573e8c2e8425b671a04d379bd166.tar.gz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/espressif/gcc @@ -60,6 +60,8 @@ MKPIE_SUPPORTED= no # 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-local-prefix=${GNU_CONFIGURE_PREFIX}/xtensa-${ESP32_TYPE}-elf +CONFIGURE_ARGS+= --with-headers=${GNU_CONFIGURE_PREFIX}/xtensa-${ESP32_TYPE}-elf/include CONFIGURE_ARGS+= --with-newlib CONFIGURE_ARGS+= --enable-threads=no CONFIGURE_ARGS+= --disable-shared @@ -84,6 +86,32 @@ CONFIGURE_ARGS+= --enable-libstdcxx-time CONFIGURE_ARGS+= --disable-bootstrap +# configry for newlib +CONFIGURE_ARGS+= --enable-newlib-io-float +CONFIGURE_ARGS+= --disable-newlib-io-long-double +CONFIGURE_ARGS+= --disable-newlib-supplied-syscalls +CONFIGURE_ARGS+= --enable-newlib-io-pos-args +CONFIGURE_ARGS+= --enable-newlib-io-c99-formats +CONFIGURE_ARGS+= --enable-newlib-io-long-long +CONFIGURE_ARGS+= --disable-newlib-register-fini +CONFIGURE_ARGS+= --disable-newlib-nano-malloc +CONFIGURE_ARGS+= --disable-newlib-nano-formatted-io +CONFIGURE_ARGS+= --enable-newlib-atexit-dynamic-alloc +CONFIGURE_ARGS+= --disable-newlib-global-atexit +CONFIGURE_ARGS+= --disable-lite-exit +CONFIGURE_ARGS+= --enable-newlib-reent-small +CONFIGURE_ARGS+= --enable-newlib-multithread +CONFIGURE_ARGS+= --disable-newlib-retargetable-locking +CONFIGURE_ARGS+= --disable-newlib-wide-orient +CONFIGURE_ARGS+= --enable-newlib-fseek-optimization +CONFIGURE_ARGS+= --enable-newlib-fvwrite-in-streamio +CONFIGURE_ARGS+= --enable-newlib-unbuf-stream-opt +CONFIGURE_ARGS+= --enable-target-optspace +CONFIGURE_ARGS+= --enable-newlib-long-time_t +CONFIGURE_ARGS+= --enable-newlib-nano-malloc +CONFIGURE_ARGS+= --enable-newlib-retargetable-locking +CONFIGURE_ARGS+= --enable-newlib-iconv + CHECK_PORTABILITY_SKIP+= contrib/* post-extract: Index: pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST diff -u pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST:1.3 pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST:1.4 --- pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST:1.3 Thu Apr 14 00:50:00 2022 +++ pkgsrc/cross/xtensa-esp32-elf-gcc/PLIST Fri Jul 22 02:01:54 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2022/04/14 00:50:00 tnn Exp $ +@comment $NetBSD: PLIST,v 1.4 2022/07/22 02:01:54 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++ @@ -493,6 +493,48 @@ xtensa-esp32-elf/share/gcc-${PKGVERSION} xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/__init__.py xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/printers.py xtensa-esp32-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/xmethods.py +xtensa-esp32-elf/share/iconv_data/big5.cct +xtensa-esp32-elf/share/iconv_data/cns11643_plane1.cct +xtensa-esp32-elf/share/iconv_data/cns11643_plane14.cct +xtensa-esp32-elf/share/iconv_data/cns11643_plane2.cct +xtensa-esp32-elf/share/iconv_data/cp775.cct +xtensa-esp32-elf/share/iconv_data/cp850.cct +xtensa-esp32-elf/share/iconv_data/cp852.cct +xtensa-esp32-elf/share/iconv_data/cp855.cct +xtensa-esp32-elf/share/iconv_data/cp866.cct +xtensa-esp32-elf/share/iconv_data/encoding.aliases +xtensa-esp32-elf/share/iconv_data/iso_8859_1.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_10.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_11.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_13.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_14.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_15.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_2.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_3.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_4.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_5.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_6.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_7.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_8.cct +xtensa-esp32-elf/share/iconv_data/iso_8859_9.cct +xtensa-esp32-elf/share/iconv_data/iso_ir_111.cct +xtensa-esp32-elf/share/iconv_data/jis_x0201_1976.cct +xtensa-esp32-elf/share/iconv_data/jis_x0208_1990.cct +xtensa-esp32-elf/share/iconv_data/jis_x0212_1990.cct +xtensa-esp32-elf/share/iconv_data/koi8_r.cct +xtensa-esp32-elf/share/iconv_data/koi8_ru.cct +xtensa-esp32-elf/share/iconv_data/koi8_u.cct +xtensa-esp32-elf/share/iconv_data/koi8_uni.cct +xtensa-esp32-elf/share/iconv_data/ksx1001.cct +xtensa-esp32-elf/share/iconv_data/win_1250.cct +xtensa-esp32-elf/share/iconv_data/win_1251.cct +xtensa-esp32-elf/share/iconv_data/win_1252.cct +xtensa-esp32-elf/share/iconv_data/win_1253.cct +xtensa-esp32-elf/share/iconv_data/win_1254.cct +xtensa-esp32-elf/share/iconv_data/win_1255.cct +xtensa-esp32-elf/share/iconv_data/win_1256.cct +xtensa-esp32-elf/share/iconv_data/win_1257.cct +xtensa-esp32-elf/share/iconv_data/win_1258.cct xtensa-esp32-elf/xtensa-esp32-elf/include/_ansi.h xtensa-esp32-elf/xtensa-esp32-elf/include/_newlib_version.h xtensa-esp32-elf/xtensa-esp32-elf/include/_syslist.h @@ -1441,9 +1483,17 @@ xtensa-esp32-elf/xtensa-esp32-elf/includ xtensa-esp32-elf/xtensa-esp32-elf/include/wctype.h xtensa-esp32-elf/xtensa-esp32-elf/include/wordexp.h xtensa-esp32-elf/xtensa-esp32-elf/include/xtensa/config/core-isa.h +xtensa-esp32-elf/xtensa-esp32-elf/lib/app.elf.ld +xtensa-esp32-elf/xtensa-esp32-elf/lib/board.elf.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/crt1-boards.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/crt1-sim.o xtensa-esp32-elf/xtensa-esp32-elf/lib/default.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/app.elf.ld +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/board.elf.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/crt0.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/crt1-boards.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/crt1-sim.o xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/default.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libc.a xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libg.a @@ -1453,8 +1503,15 @@ xtensa-esp32-elf/xtensa-esp32-elf/lib/es xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libstdc++.a-gdb.py xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libstdc++.la xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libsupc++.la +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libsys_openocd.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/libsys_qemu.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/memory.elf.ld xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/nano.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/app.elf.ld +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/board.elf.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/crt0.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/crt1-boards.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/crt1-sim.o xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/default.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libc.a xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libg.a @@ -1464,9 +1521,18 @@ xtensa-esp32-elf/xtensa-esp32-elf/lib/es xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libstdc++.a-gdb.py xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libstdc++.la xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libsupc++.la +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libsys_openocd.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/libsys_qemu.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/memory.elf.ld xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/nano.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/nosys.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/sim.elf.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/sys.openocd.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/no-rtti/sys.qemu.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/nosys.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/sim.elf.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/sys.openocd.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/esp32-psram/sys.qemu.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/libc.a xtensa-esp32-elf/xtensa-esp32-elf/lib/libg.a xtensa-esp32-elf/xtensa-esp32-elf/lib/libgloss.a @@ -1475,8 +1541,15 @@ xtensa-esp32-elf/xtensa-esp32-elf/lib/li xtensa-esp32-elf/xtensa-esp32-elf/lib/libstdc++.a-gdb.py xtensa-esp32-elf/xtensa-esp32-elf/lib/libstdc++.la xtensa-esp32-elf/xtensa-esp32-elf/lib/libsupc++.la +xtensa-esp32-elf/xtensa-esp32-elf/lib/libsys_openocd.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/libsys_qemu.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/memory.elf.ld xtensa-esp32-elf/xtensa-esp32-elf/lib/nano.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/app.elf.ld +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/board.elf.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/crt0.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/crt1-boards.o +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/crt1-sim.o xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/default.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libc.a xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libg.a @@ -1486,9 +1559,18 @@ xtensa-esp32-elf/xtensa-esp32-elf/lib/no xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libstdc++.a-gdb.py xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libstdc++.la xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libsupc++.la +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libsys_openocd.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/libsys_qemu.a +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/memory.elf.ld xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/nano.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/nosys.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/sim.elf.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/sys.openocd.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/no-rtti/sys.qemu.specs xtensa-esp32-elf/xtensa-esp32-elf/lib/nosys.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/sim.elf.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/sys.openocd.specs +xtensa-esp32-elf/xtensa-esp32-elf/lib/sys.qemu.specs @pkgdir xtensa-esp32-elf/xtensa-esp32-elf/include/rpc @pkgdir xtensa-esp32-elf/xtensa-esp32-elf/include/bits @pkgdir xtensa-esp32-elf/include Index: pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo diff -u pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo:1.7 pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo:1.8 --- pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo:1.7 Fri Apr 15 16:56:08 2022 +++ pkgsrc/cross/xtensa-esp32-elf-gcc/distinfo Fri Jul 22 02:01:54 2022 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2022/04/15 16:56:08 tnn Exp $ +$NetBSD: distinfo,v 1.8 2022/07/22 02:01:54 tnn Exp $ BLAKE2s (crosstool-NG-esp-2021r2-patch3.tar.gz) = 2013c2818fd818473d5a6d923108f6c80bd6b62345a1e2a835bb4ba9a5f104b7 SHA512 (crosstool-NG-esp-2021r2-patch3.tar.gz) = 65a4c60151fb13311c21092c9b575fa29cac1beb9642ed73940c2d5fb5b11b8129b73ccfab847a02fb99d0a6b596b98d7f54c40fdcf304a2b667ca78746ed2cb @@ -6,9 +6,9 @@ Size (crosstool-NG-esp-2021r2-patch3.tar BLAKE2s (espressif-gcc-8.4.0-f9333cfc1a790dff864aea3478cb862cc442be30.tar.gz) = bf9fb66a7c0042cfc762adf67e2c3f8df15be176d4c3f95e15dd3d75908ea970 SHA512 (espressif-gcc-8.4.0-f9333cfc1a790dff864aea3478cb862cc442be30.tar.gz) = 304af9506b6e69d7405eef87ca558d8467438a3bc4dfe98e1cff22a9b1250f4f72e9aa0908a157a4c1d1b21387116335de0745ba7bafb6af0fce5cee43f71be2 Size (espressif-gcc-8.4.0-f9333cfc1a790dff864aea3478cb862cc442be30.tar.gz) = 102886468 bytes -BLAKE2s (newlib-esp32-2021r2-patch3_newlib-3_3_0.tar.gz) = f49c5ba7d678b9d05e6eb6abf543e5fc24ca4af1ca1d172edd028fe5f9396e1c -SHA512 (newlib-esp32-2021r2-patch3_newlib-3_3_0.tar.gz) = 24e2200b5e16db12a40ada1a03d01389214859382d06f2068a57fd4e8d87e4f74bf963e139fbfd3f24e5815ba2ead897b0ac190fc0848a1c49895ed0c8ab54ac -Size (newlib-esp32-2021r2-patch3_newlib-3_3_0.tar.gz) = 21938580 bytes +BLAKE2s (newlib-esp32-2021r2-patch3_newlib-3_3_0-9e1cbb81.tar.gz) = acd19f2ce950b6522d68e969b0e72dad949fd5b5bb8e73460006f5f879466d53 +SHA512 (newlib-esp32-2021r2-patch3_newlib-3_3_0-9e1cbb81.tar.gz) = 9b93075b0cd3b22c839dfd55e576eaa2e41c5936754fb67a4cf0298cc291db0c6c22e780cd463ad331840ef5468f9df1f5ecaddbda573fb75ed9245d0aa34ebb +Size (newlib-esp32-2021r2-patch3_newlib-3_3_0-9e1cbb81.tar.gz) = 21950118 bytes SHA1 (patch-gcc_config_host-darwin.c) = 497f2d417755071e78e69e9a3b75754b29055b20 SHA1 (patch-gcc_system.h) = 72a75ff773b9b5f3d2f16f4ec7d29e032aba5f53 SHA1 (patch-newlib_libc_posix_collate.c) = 2916597f1ca3b7beb2f67a457d8f448e1da8f896 Index: pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile diff -u pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile:1.1 pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile:1.2 --- pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile:1.1 Thu Apr 14 00:50:59 2022 +++ pkgsrc/cross/xtensa-esp32s2-elf-gcc/Makefile Fri Jul 22 02:01:54 2022 @@ -1,5 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2022/04/14 00:50:59 tnn Exp $ +# $NetBSD: Makefile,v 1.2 2022/07/22 02:01:54 tnn Exp $ +PKGREVISION= 2 ESP32_TYPE= esp32s2 .include "${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/Makefile.common" Index: pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST diff -u pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST:1.1 pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST:1.2 --- pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST:1.1 Thu Apr 14 00:50:59 2022 +++ pkgsrc/cross/xtensa-esp32s2-elf-gcc/PLIST Fri Jul 22 02:01:54 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2022/04/14 00:50:59 tnn Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/07/22 02:01:54 tnn Exp $ xtensa-esp32s2-elf/bin/xtensa-esp32s2-elf-c++ xtensa-esp32s2-elf/bin/xtensa-esp32s2-elf-cpp xtensa-esp32s2-elf/bin/xtensa-esp32s2-elf-g++ @@ -493,6 +493,48 @@ xtensa-esp32s2-elf/share/gcc-${PKGVERSIO xtensa-esp32s2-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/__init__.py xtensa-esp32s2-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/printers.py xtensa-esp32s2-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/xmethods.py +xtensa-esp32s2-elf/share/iconv_data/big5.cct +xtensa-esp32s2-elf/share/iconv_data/cns11643_plane1.cct +xtensa-esp32s2-elf/share/iconv_data/cns11643_plane14.cct +xtensa-esp32s2-elf/share/iconv_data/cns11643_plane2.cct +xtensa-esp32s2-elf/share/iconv_data/cp775.cct +xtensa-esp32s2-elf/share/iconv_data/cp850.cct +xtensa-esp32s2-elf/share/iconv_data/cp852.cct +xtensa-esp32s2-elf/share/iconv_data/cp855.cct +xtensa-esp32s2-elf/share/iconv_data/cp866.cct +xtensa-esp32s2-elf/share/iconv_data/encoding.aliases +xtensa-esp32s2-elf/share/iconv_data/iso_8859_1.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_10.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_11.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_13.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_14.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_15.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_2.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_3.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_4.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_5.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_6.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_7.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_8.cct +xtensa-esp32s2-elf/share/iconv_data/iso_8859_9.cct +xtensa-esp32s2-elf/share/iconv_data/iso_ir_111.cct +xtensa-esp32s2-elf/share/iconv_data/jis_x0201_1976.cct +xtensa-esp32s2-elf/share/iconv_data/jis_x0208_1990.cct +xtensa-esp32s2-elf/share/iconv_data/jis_x0212_1990.cct +xtensa-esp32s2-elf/share/iconv_data/koi8_r.cct +xtensa-esp32s2-elf/share/iconv_data/koi8_ru.cct +xtensa-esp32s2-elf/share/iconv_data/koi8_u.cct +xtensa-esp32s2-elf/share/iconv_data/koi8_uni.cct +xtensa-esp32s2-elf/share/iconv_data/ksx1001.cct +xtensa-esp32s2-elf/share/iconv_data/win_1250.cct +xtensa-esp32s2-elf/share/iconv_data/win_1251.cct +xtensa-esp32s2-elf/share/iconv_data/win_1252.cct +xtensa-esp32s2-elf/share/iconv_data/win_1253.cct +xtensa-esp32s2-elf/share/iconv_data/win_1254.cct +xtensa-esp32s2-elf/share/iconv_data/win_1255.cct +xtensa-esp32s2-elf/share/iconv_data/win_1256.cct +xtensa-esp32s2-elf/share/iconv_data/win_1257.cct +xtensa-esp32s2-elf/share/iconv_data/win_1258.cct xtensa-esp32s2-elf/xtensa-esp32s2-elf/include/_ansi.h xtensa-esp32s2-elf/xtensa-esp32s2-elf/include/_newlib_version.h xtensa-esp32s2-elf/xtensa-esp32s2-elf/include/_syslist.h Index: pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile diff -u pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile:1.1 pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile:1.2 --- pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile:1.1 Thu Apr 14 00:51:49 2022 +++ pkgsrc/cross/xtensa-esp32s3-elf-gcc/Makefile Fri Jul 22 02:01:55 2022 @@ -1,5 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2022/04/14 00:51:49 tnn Exp $ +# $NetBSD: Makefile,v 1.2 2022/07/22 02:01:55 tnn Exp $ +PKGREVISION= 2 ESP32_TYPE= esp32s3 .include "${.CURDIR}/../../cross/xtensa-esp32-elf-gcc/Makefile.common" Index: pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST diff -u pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST:1.1 pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST:1.2 --- pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST:1.1 Thu Apr 14 00:51:49 2022 +++ pkgsrc/cross/xtensa-esp32s3-elf-gcc/PLIST Fri Jul 22 02:01:55 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2022/04/14 00:51:49 tnn Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/07/22 02:01:55 tnn Exp $ xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-c++ xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-cpp xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++ @@ -493,6 +493,48 @@ xtensa-esp32s3-elf/share/gcc-${PKGVERSIO xtensa-esp32s3-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/__init__.py xtensa-esp32s3-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/printers.py xtensa-esp32s3-elf/share/gcc-${PKGVERSION}/python/libstdcxx/v6/xmethods.py +xtensa-esp32s3-elf/share/iconv_data/big5.cct +xtensa-esp32s3-elf/share/iconv_data/cns11643_plane1.cct +xtensa-esp32s3-elf/share/iconv_data/cns11643_plane14.cct +xtensa-esp32s3-elf/share/iconv_data/cns11643_plane2.cct +xtensa-esp32s3-elf/share/iconv_data/cp775.cct +xtensa-esp32s3-elf/share/iconv_data/cp850.cct +xtensa-esp32s3-elf/share/iconv_data/cp852.cct +xtensa-esp32s3-elf/share/iconv_data/cp855.cct +xtensa-esp32s3-elf/share/iconv_data/cp866.cct +xtensa-esp32s3-elf/share/iconv_data/encoding.aliases +xtensa-esp32s3-elf/share/iconv_data/iso_8859_1.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_10.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_11.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_13.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_14.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_15.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_2.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_3.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_4.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_5.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_6.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_7.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_8.cct +xtensa-esp32s3-elf/share/iconv_data/iso_8859_9.cct +xtensa-esp32s3-elf/share/iconv_data/iso_ir_111.cct +xtensa-esp32s3-elf/share/iconv_data/jis_x0201_1976.cct +xtensa-esp32s3-elf/share/iconv_data/jis_x0208_1990.cct +xtensa-esp32s3-elf/share/iconv_data/jis_x0212_1990.cct +xtensa-esp32s3-elf/share/iconv_data/koi8_r.cct +xtensa-esp32s3-elf/share/iconv_data/koi8_ru.cct +xtensa-esp32s3-elf/share/iconv_data/koi8_u.cct +xtensa-esp32s3-elf/share/iconv_data/koi8_uni.cct +xtensa-esp32s3-elf/share/iconv_data/ksx1001.cct +xtensa-esp32s3-elf/share/iconv_data/win_1250.cct +xtensa-esp32s3-elf/share/iconv_data/win_1251.cct +xtensa-esp32s3-elf/share/iconv_data/win_1252.cct +xtensa-esp32s3-elf/share/iconv_data/win_1253.cct +xtensa-esp32s3-elf/share/iconv_data/win_1254.cct +xtensa-esp32s3-elf/share/iconv_data/win_1255.cct +xtensa-esp32s3-elf/share/iconv_data/win_1256.cct +xtensa-esp32s3-elf/share/iconv_data/win_1257.cct +xtensa-esp32s3-elf/share/iconv_data/win_1258.cct xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/_ansi.h xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/_newlib_version.h xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/_syslist.h --_----------=_165845531513860--