mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 16:50:29 -04:00
WASI is a "syscall" interface for WebAssembly, significantly inspired by CloudABI. It is supported in clang 8 and up, but to actually build C programs, it needs clang builtins and the libc/sysroot. And for C++, also libc++ and libcxxabi. Submitted by: Greg V <greg%unrelenting.technology> Differential Revision: https://reviews.freebsd.org/D22960
13 lines
501 B
Text
13 lines
501 B
Text
complains about: __arraycount
|
|
|
|
--- Makefile.orig 2020-05-16 19:12:43 UTC
|
|
+++ Makefile
|
|
@@ -515,7 +515,7 @@ finish: 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)"
|
|
|
|
#
|
|
# The build succeeded! The generated sysroot is in $(SYSROOT).
|