wasi-libc: update to 0.0.0pre20220311.

Disable symbol comparison, since it fails for a couple of people
and mef's bulk build.

Changes:

Enable support for utimes and futimesat.
more graphical code
chdir: fixing a malloc'ed buffer that was not large enough
This commit is contained in:
wiz 2022-03-15 14:33:22 +00:00
parent 66b646b264
commit e98ead683f
3 changed files with 16 additions and 12 deletions

View file

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.7 2022/01/10 00:00:05 tnn Exp $
# $NetBSD: Makefile,v 1.8 2022/03/15 14:33:22 wiz Exp $
GITHUB_PROJECT= wasi-libc
GITHUB_TAG= ad5133410f66b93a2381db5b542aad5e0964db96
DISTNAME= wasi-libc-0.0.0pre20210923
GITHUB_TAG= 079adff840032c3455eb1cb34dc9ceaa0b2bfc0c
DISTNAME= wasi-libc-0.0.0pre20220311
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_GITHUB:=WebAssembly/}

View file

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.1 2021/12/19 13:38:56 ryoon Exp $
$NetBSD: distinfo,v 1.2 2022/03/15 14:33:22 wiz Exp $
BLAKE2s (WebAssembly-WASI-3423c9c83c7219095d6e67faaf62598ad370064c.tar.gz) = 50040bba05e7685e002650788f5692c61f489bbf3aee20d1b8b70a0be5fec957
SHA512 (WebAssembly-WASI-3423c9c83c7219095d6e67faaf62598ad370064c.tar.gz) = b96f2c6a2d777fa721e10cf24f8d11b71bac3c9ee308b2c223daf0477feaf6cd300897dba18d220c30a34cd34fb29f7545f4b393fc60f8b91ba0a1538b787c14
Size (WebAssembly-WASI-3423c9c83c7219095d6e67faaf62598ad370064c.tar.gz) = 200976 bytes
BLAKE2s (wasi-libc-0.0.0pre20210923-ad5133410f66b93a2381db5b542aad5e0964db96.tar.gz) = 5efce97c4f20db19e970e77071120b02b05447b5cd81a06d6b789d717c3f9fe2
SHA512 (wasi-libc-0.0.0pre20210923-ad5133410f66b93a2381db5b542aad5e0964db96.tar.gz) = 04cb3a25fef7949bf77f262bd939102f5b36e2ae85f28cdbfcd8a8984425fba54fae68049b777974bdbad96882fab383b44203e8f19a776d8a56a55475c4aab6
Size (wasi-libc-0.0.0pre20210923-ad5133410f66b93a2381db5b542aad5e0964db96.tar.gz) = 1251318 bytes
SHA1 (patch-Makefile) = 19060501818536bd062957f69b0bdd4a14849b3d
BLAKE2s (wasi-libc-0.0.0pre20220311-079adff840032c3455eb1cb34dc9ceaa0b2bfc0c.tar.gz) = cc34906d02772ce0c7b2ce36c3282c7fe91495c3ff854b0688c75b5509ddb6ee
SHA512 (wasi-libc-0.0.0pre20220311-079adff840032c3455eb1cb34dc9ceaa0b2bfc0c.tar.gz) = f79cee2be336614a4512a074b6909689ecee57baeb16b43602bf9551c778d176901d69db6c56f4d5561f32477c76a861a3c6c73edae651b6d4d83ee439c514df
Size (wasi-libc-0.0.0pre20220311-079adff840032c3455eb1cb34dc9ceaa0b2bfc0c.tar.gz) = 1251437 bytes
SHA1 (patch-Makefile) = d7b66d8f5172c1ee21de7ce8075d3f41d2ed0af0

View file

@ -1,12 +1,16 @@
$NetBSD: patch-Makefile,v 1.1 2021/12/19 13:38:56 ryoon Exp $
$NetBSD: patch-Makefile,v 1.2 2022/03/15 14:33:23 wiz Exp $
* Disable symbol comparison, it's fragile
* Workaround for rebuild in install stage.
--- Makefile.orig 2021-09-22 22:36:47.000000000 +0000
--- Makefile.orig 2022-03-10 22:14:40.000000000 +0000
+++ Makefile
@@ -546,7 +546,7 @@ check-symbols: startup_files libc
@@ -545,9 +545,9 @@ check-symbols: startup_files libc
# Check that the computed metadata matches the expected metadata.
# This ignores whitespace because on Windows the output has CRLF line endings.
diff -wur "$(CURDIR)/expected/$(MULTIARCH_TRIPLE)" "$(SYSROOT_SHARE)"
- diff -wur "$(CURDIR)/expected/$(MULTIARCH_TRIPLE)" "$(SYSROOT_SHARE)"
+ #diff -wur "$(CURDIR)/expected/$(MULTIARCH_TRIPLE)" "$(SYSROOT_SHARE)"
-install: finish
+install: