diff --git a/devel/wasi-compiler-rt/Makefile b/devel/wasi-compiler-rt/Makefile index eb84840cd01e..ce4f30b1c44f 100644 --- a/devel/wasi-compiler-rt/Makefile +++ b/devel/wasi-compiler-rt/Makefile @@ -1,75 +1,74 @@ PORTNAME= compiler-rt DISTVERSION?= 0 PORTREVISION?= 0 CATEGORIES= devel lang MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION:S/rc/-rc/}/ \ https://${PRE_}releases.llvm.org/${LLVM_RELEASE}/${RCDIR}/ PKGNAMEPREFIX= wasi- PKGNAMESUFFIX= ${LLVM_VERSION} DISTNAME= llvm-project-${DISTVERSION}.src DISTFILES= llvm-project-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= vishwin@FreeBSD.org COMMENT= Clang builtins library for WebAssembly System Interface WWW= https://llvm.org/ LICENSE= LLVM2 LICENSE_NAME= Apache License 2.0 with LLVM Exceptions LICENSE_FILE= ${WRKSRC}/llvm/LICENSE.TXT LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= cmake tar:xz .if ${DISTVERSION} == 0 IGNORE= is a meta-port; there is nothing to build PKGNAMESUFFIX= -master .else USES+= llvm:${LLVM_SUFFIX} .endif LLVM_RELEASE= ${DISTVERSION:C/rc.*//} LLVM_SUFFIX= ${LLVM_RELEASE:C/\.[0-9]\.[0-9]$//} DISTINFO_FILE= ${PORTSDIR}/${LLVM_PORT}/distinfo NO_ARCH= yes WASI_SYSROOT= ${LOCALBASE}/share/wasi-sysroot -TRIPLE= wasm32-wasi +TRIPLE= wasm32-unknown-wasip1 WITHOUT_CPU_CFLAGS= yes # try to sync with https://github.com/WebAssembly/wasi-sdk # wasi-sdk.cmake and cmake/wasi-sdk-sysroot.cmake CMAKE_SOURCE_PATH= ${WRKSRC}/compiler-rt/lib/builtins CMAKE_ARGS= -DCMAKE_SYSTEM_NAME=WASI \ -DCMAKE_SYSTEM_VERSION=1 \ -DCMAKE_SYSTEM_PROCESSOR=wasm32 \ -DCMAKE_AR=${LOCALBASE}/bin/llvm-ar${LLVM_VERSION} \ -DCMAKE_RANLIB=${LOCALBASE}/bin/llvm-ranlib${LLVM_VERSION} \ -DCMAKE_C_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_CXX_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_ASM_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER \ -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \ -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \ -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY \ -DCMAKE_C_COMPILER_WORKS=ON \ -DCMAKE_CXX_COMPILER_WORKS=ON \ -DCMAKE_SYSROOT=${WASI_SYSROOT} \ + -DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=ON \ -DCOMPILER_RT_BAREMETAL_BUILD=ON \ -DCOMPILER_RT_BUILD_XRAY=OFF \ -DCOMPILER_RT_INCLUDE_TESTS=OFF \ -DCOMPILER_RT_HAS_FPIC_FLAG=OFF \ - -DCOMPILER_RT_ENABLE_IOS=OFF \ -DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON \ -DCOMPILER_RT_BUILD_SANITIZERS=OFF \ -DCOMPILER_RT_BUILD_XRAY=OFF \ -DCOMPILER_RT_BUILD_LIBFUZZER=OFF \ -DCOMPILER_RT_BUILD_PROFILE=OFF \ -DCOMPILER_RT_BUILD_CTX_PROFILE=OFF \ -DCOMPILER_RT_BUILD_MEMPROF=OFF \ -DCOMPILER_RT_BUILD_ORC=OFF \ - -DCOMPILER_RT_BUILD_GWP_ASAN=OFF \ - -DCOMPILER_RT_OS_DIR=wasi + -DCOMPILER_RT_BUILD_GWP_ASAN=OFF CMAKE_INSTALL_PREFIX= ${LLVM_PREFIX}/lib/clang/${LLVM_VERSION} -PLIST_FILES= ${LLVM_PREFIX}/lib/clang/${LLVM_VERSION}/lib/wasi/libclang_rt.builtins-wasm32.a +PLIST_FILES= ${LLVM_PREFIX}/lib/clang/${LLVM_VERSION}/lib/${TRIPLE}/libclang_rt.builtins.a .include diff --git a/devel/wasi-compiler-rt17/Makefile b/devel/wasi-compiler-rt17/Makefile index 5c7882c84831..9b74ed72d90f 100644 --- a/devel/wasi-compiler-rt17/Makefile +++ b/devel/wasi-compiler-rt17/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm17 DISTVERSION= 17.0.6 -PORTREVISION= 2 +PORTREVISION= 3 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-compiler-rt18/Makefile b/devel/wasi-compiler-rt18/Makefile index 5d51ffdf1b5b..4193f7a52630 100644 --- a/devel/wasi-compiler-rt18/Makefile +++ b/devel/wasi-compiler-rt18/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm18 DISTVERSION= 18.1.8 -PORTREVISION= 1 +PORTREVISION= 2 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-compiler-rt19/Makefile b/devel/wasi-compiler-rt19/Makefile index 29a288d81f3b..78e2e41b366b 100644 --- a/devel/wasi-compiler-rt19/Makefile +++ b/devel/wasi-compiler-rt19/Makefile @@ -1,6 +1,7 @@ # must sync with devel/llvm19 DISTVERSION= 19.1.7 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-compiler-rt20/Makefile b/devel/wasi-compiler-rt20/Makefile index 2cd2b30e3699..a167c0636db4 100644 --- a/devel/wasi-compiler-rt20/Makefile +++ b/devel/wasi-compiler-rt20/Makefile @@ -1,6 +1,7 @@ # must sync with devel/llvm20 DISTVERSION= 20.1.8 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-compiler-rt21/Makefile b/devel/wasi-compiler-rt21/Makefile index 2c0ab41c55af..3b66285ddc8f 100644 --- a/devel/wasi-compiler-rt21/Makefile +++ b/devel/wasi-compiler-rt21/Makefile @@ -1,6 +1,7 @@ # must sync with devel/llvm21 DISTVERSION= 21.1.8 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-compiler-rt22/Makefile b/devel/wasi-compiler-rt22/Makefile index 8f2f6f874d39..faad426849cd 100644 --- a/devel/wasi-compiler-rt22/Makefile +++ b/devel/wasi-compiler-rt22/Makefile @@ -1,6 +1,7 @@ # must sync with devel/llvm22 DISTVERSION= 22.1.0 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libc/Makefile b/devel/wasi-libc/Makefile index 32c1021d4a27..3da7c62f9f28 100644 --- a/devel/wasi-libc/Makefile +++ b/devel/wasi-libc/Makefile @@ -1,46 +1,48 @@ PORTNAME= wasi-libc DISTVERSIONPREFIX= wasi-sdk- DISTVERSION= 31 +PORTREVISION= 1 CATEGORIES= devel PKGNAMESUFFIX= ${FLAVOR} MAINTAINER= vishwin@FreeBSD.org COMMENT= C standard library for WebAssembly System Interface WWW= https://github.com/WebAssembly/wasi-libc LICENSE= APACHE20 MIT LLVM2 LICENSE_COMB= multi LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LICENSE_FILE_LLVM2= ${WRKSRC}/LICENSE-APACHE-LLVM LICENSE_NAME_LLVM2= Apache License 2.0 with LLVM Exceptions LICENSE_PERMS_LLVM2= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= bash:shells/bash \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} FLAVORS= 19 20 21 22 18 17 FLAVOR?= ${FLAVORS:[1]} USES= cmake llvm:${FLAVOR} USE_GITHUB= yes GH_ACCOUNT= WebAssembly GH_TUPLE= WebAssembly:WASI:59cbe14:wasi/tools/wasi-headers/WASI NO_ARCH= yes PLIST= ${PKGDIR}/pkg-plist${LLVM_VERSION} +PLIST_SUB= TRIPLE=${TRIPLE} CONFLICTS_INSTALL= wasi-libc[0-9]* WITHOUT_CPU_CFLAGS= yes # NOTE: matches the https://github.com/WebAssembly/wasi-sdk WASI_SYSROOT= ${PREFIX}/share/wasi-sysroot +TRIPLE= wasm32-wasip1 CMAKE_INSTALL_PREFIX= ${WASI_SYSROOT} -CMAKE_ARGS= -DCMAKE_C_COMPILER=clang${LLVM_VERSION} \ - -DCMAKE_AR=llvm-ar${LLVM_VERSION} \ +CMAKE_ARGS= -DCMAKE_AR=llvm-ar${LLVM_VERSION} \ -DCMAKE_NM=llvm-nm${LLVM_VERSION} \ -DCMAKE_RANLIB=llvm-ranlib${LLVM_VERSION} \ - -DTARGET_TRIPLE=wasm32-wasi \ - -DBUILTINS_LIB=${LLVM_PREFIX:S/${PREFIX}/${LOCALBASE}/}/lib/clang/${LLVM_VERSION}/lib/wasi/libclang_rt.builtins-wasm32.a \ + -DTARGET_TRIPLE=${TRIPLE} \ + -DBUILTINS_LIB=${LLVM_PREFIX:S|${PREFIX}|${LOCALBASE}|}/lib/clang/${LLVM_VERSION}/lib/${TRIPLE:S|-|-unknown-|}/libclang_rt.builtins.a \ -DBUILD_SHARED=OFF .include diff --git a/devel/wasi-libc/pkg-plist17 b/devel/wasi-libc/pkg-plist17 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist17 +++ b/devel/wasi-libc/pkg-plist17 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libc/pkg-plist18 b/devel/wasi-libc/pkg-plist18 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist18 +++ b/devel/wasi-libc/pkg-plist18 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libc/pkg-plist19 b/devel/wasi-libc/pkg-plist19 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist19 +++ b/devel/wasi-libc/pkg-plist19 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libc/pkg-plist20 b/devel/wasi-libc/pkg-plist20 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist20 +++ b/devel/wasi-libc/pkg-plist20 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libc/pkg-plist21 b/devel/wasi-libc/pkg-plist21 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist21 +++ b/devel/wasi-libc/pkg-plist21 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libc/pkg-plist22 b/devel/wasi-libc/pkg-plist22 index 70134a9ade3b..9451850aff7e 100644 --- a/devel/wasi-libc/pkg-plist22 +++ b/devel/wasi-libc/pkg-plist22 @@ -1,225 +1,225 @@ -share/wasi-sysroot/include/wasm32-wasi/__errno.h -share/wasi-sysroot/include/wasm32-wasi/__errno_values.h -share/wasi-sysroot/include/wasm32-wasi/__fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__function___isatty.h -share/wasi-sysroot/include/wasm32-wasi/__functions_malloc.h -share/wasi-sysroot/include/wasm32-wasi/__functions_memcpy.h -share/wasi-sysroot/include/wasm32-wasi/__header_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__header_fcntl.h -share/wasi-sysroot/include/wasm32-wasi/__header_inttypes.h -share/wasi-sysroot/include/wasm32-wasi/__header_netinet_in.h -share/wasi-sysroot/include/wasm32-wasi/__header_poll.h -share/wasi-sysroot/include/wasm32-wasi/__header_stdlib.h -share/wasi-sysroot/include/wasm32-wasi/__header_string.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_ioctl.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_resource.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_socket.h -share/wasi-sysroot/include/wasm32-wasi/__header_sys_stat.h -share/wasi-sysroot/include/wasm32-wasi/__header_time.h -share/wasi-sysroot/include/wasm32-wasi/__header_unistd.h -share/wasi-sysroot/include/wasm32-wasi/__macro_FD_SETSIZE.h -share/wasi-sysroot/include/wasm32-wasi/__macro_PAGESIZE.h -share/wasi-sysroot/include/wasm32-wasi/__mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__seek.h -share/wasi-sysroot/include/wasm32-wasi/__struct_dirent.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in6_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_in_addr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_iovec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_msghdr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_pollfd.h -share/wasi-sysroot/include/wasm32-wasi/__struct_rusage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_in6.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_storage.h -share/wasi-sysroot/include/wasm32-wasi/__struct_sockaddr_un.h -share/wasi-sysroot/include/wasm32-wasi/__struct_stat.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timespec.h -share/wasi-sysroot/include/wasm32-wasi/__struct_timeval.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tm.h -share/wasi-sysroot/include/wasm32-wasi/__struct_tms.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_DIR.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blkcnt_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_blksize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clock_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_clockid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_dev_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_fd_set.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_gid_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_addr_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_in_port_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ino_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_mode_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nfds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_nlink_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_off_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sa_family_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_sigset_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_socklen_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_ssize_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_suseconds_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_time_t.h -share/wasi-sysroot/include/wasm32-wasi/__typedef_uid_t.h -share/wasi-sysroot/include/wasm32-wasi/alloca.h -share/wasi-sysroot/include/wasm32-wasi/ar.h -share/wasi-sysroot/include/wasm32-wasi/arpa/ftp.h -share/wasi-sysroot/include/wasm32-wasi/arpa/inet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser.h -share/wasi-sysroot/include/wasm32-wasi/arpa/nameser_compat.h -share/wasi-sysroot/include/wasm32-wasi/arpa/telnet.h -share/wasi-sysroot/include/wasm32-wasi/arpa/tftp.h -share/wasi-sysroot/include/wasm32-wasi/assert.h -share/wasi-sysroot/include/wasm32-wasi/bits/alltypes.h -share/wasi-sysroot/include/wasm32-wasi/bits/dirent.h -share/wasi-sysroot/include/wasm32-wasi/bits/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/bits/fenv.h -share/wasi-sysroot/include/wasm32-wasi/bits/float.h -share/wasi-sysroot/include/wasm32-wasi/bits/hwcap.h -share/wasi-sysroot/include/wasm32-wasi/bits/io.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/bits/ioctl_fix.h -share/wasi-sysroot/include/wasm32-wasi/bits/ipcstat.h -share/wasi-sysroot/include/wasm32-wasi/bits/limits.h -share/wasi-sysroot/include/wasm32-wasi/bits/mman.h -share/wasi-sysroot/include/wasm32-wasi/bits/poll.h -share/wasi-sysroot/include/wasm32-wasi/bits/posix.h -share/wasi-sysroot/include/wasm32-wasi/bits/reg.h -share/wasi-sysroot/include/wasm32-wasi/bits/resource.h -share/wasi-sysroot/include/wasm32-wasi/bits/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/bits/signal.h -share/wasi-sysroot/include/wasm32-wasi/bits/socket.h -share/wasi-sysroot/include/wasm32-wasi/bits/stat.h -share/wasi-sysroot/include/wasm32-wasi/bits/stdint.h -share/wasi-sysroot/include/wasm32-wasi/byteswap.h -share/wasi-sysroot/include/wasm32-wasi/complex.h -share/wasi-sysroot/include/wasm32-wasi/cpio.h -share/wasi-sysroot/include/wasm32-wasi/crypt.h -share/wasi-sysroot/include/wasm32-wasi/ctype.h -share/wasi-sysroot/include/wasm32-wasi/dirent.h -share/wasi-sysroot/include/wasm32-wasi/dlfcn.h -share/wasi-sysroot/include/wasm32-wasi/endian.h -share/wasi-sysroot/include/wasm32-wasi/err.h -share/wasi-sysroot/include/wasm32-wasi/errno.h -share/wasi-sysroot/include/wasm32-wasi/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/features.h -share/wasi-sysroot/include/wasm32-wasi/fenv.h -share/wasi-sysroot/include/wasm32-wasi/float.h -share/wasi-sysroot/include/wasm32-wasi/fmtmsg.h -share/wasi-sysroot/include/wasm32-wasi/fnmatch.h -share/wasi-sysroot/include/wasm32-wasi/fts.h -share/wasi-sysroot/include/wasm32-wasi/ftw.h -share/wasi-sysroot/include/wasm32-wasi/getopt.h -share/wasi-sysroot/include/wasm32-wasi/glob.h -share/wasi-sysroot/include/wasm32-wasi/iconv.h -share/wasi-sysroot/include/wasm32-wasi/ifaddrs.h -share/wasi-sysroot/include/wasm32-wasi/inttypes.h -share/wasi-sysroot/include/wasm32-wasi/iso646.h -share/wasi-sysroot/include/wasm32-wasi/langinfo.h -share/wasi-sysroot/include/wasm32-wasi/libgen.h -share/wasi-sysroot/include/wasm32-wasi/limits.h -share/wasi-sysroot/include/wasm32-wasi/locale.h -share/wasi-sysroot/include/wasm32-wasi/malloc.h -share/wasi-sysroot/include/wasm32-wasi/math.h -share/wasi-sysroot/include/wasm32-wasi/memory.h -share/wasi-sysroot/include/wasm32-wasi/monetary.h -share/wasi-sysroot/include/wasm32-wasi/mqueue.h -share/wasi-sysroot/include/wasm32-wasi/netinet/icmp6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/igmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in.h -share/wasi-sysroot/include/wasm32-wasi/netinet/in_systm.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip6.h -share/wasi-sysroot/include/wasm32-wasi/netinet/ip_icmp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/tcp.h -share/wasi-sysroot/include/wasm32-wasi/netinet/udp.h -share/wasi-sysroot/include/wasm32-wasi/netpacket/packet.h -share/wasi-sysroot/include/wasm32-wasi/nl_types.h -share/wasi-sysroot/include/wasm32-wasi/poll.h -share/wasi-sysroot/include/wasm32-wasi/pthread.h -share/wasi-sysroot/include/wasm32-wasi/regex.h -share/wasi-sysroot/include/wasm32-wasi/sched.h -share/wasi-sysroot/include/wasm32-wasi/search.h -share/wasi-sysroot/include/wasm32-wasi/semaphore.h -share/wasi-sysroot/include/wasm32-wasi/setjmp.h -share/wasi-sysroot/include/wasm32-wasi/signal.h -share/wasi-sysroot/include/wasm32-wasi/stdalign.h -share/wasi-sysroot/include/wasm32-wasi/stdbool.h -share/wasi-sysroot/include/wasm32-wasi/stdc-predef.h -share/wasi-sysroot/include/wasm32-wasi/stdint.h -share/wasi-sysroot/include/wasm32-wasi/stdio.h -share/wasi-sysroot/include/wasm32-wasi/stdio_ext.h -share/wasi-sysroot/include/wasm32-wasi/stdlib.h -share/wasi-sysroot/include/wasm32-wasi/stdnoreturn.h -share/wasi-sysroot/include/wasm32-wasi/string.h -share/wasi-sysroot/include/wasm32-wasi/strings.h -share/wasi-sysroot/include/wasm32-wasi/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/dir.h -share/wasi-sysroot/include/wasm32-wasi/sys/errno.h -share/wasi-sysroot/include/wasm32-wasi/sys/eventfd.h -share/wasi-sysroot/include/wasm32-wasi/sys/fcntl.h -share/wasi-sysroot/include/wasm32-wasi/sys/file.h -share/wasi-sysroot/include/wasm32-wasi/sys/ioctl.h -share/wasi-sysroot/include/wasm32-wasi/sys/mman.h -share/wasi-sysroot/include/wasm32-wasi/sys/param.h -share/wasi-sysroot/include/wasm32-wasi/sys/poll.h -share/wasi-sysroot/include/wasm32-wasi/sys/random.h -share/wasi-sysroot/include/wasm32-wasi/sys/reg.h -share/wasi-sysroot/include/wasm32-wasi/sys/resource.h -share/wasi-sysroot/include/wasm32-wasi/sys/select.h -share/wasi-sysroot/include/wasm32-wasi/sys/signal.h -share/wasi-sysroot/include/wasm32-wasi/sys/socket.h -share/wasi-sysroot/include/wasm32-wasi/sys/stat.h -share/wasi-sysroot/include/wasm32-wasi/sys/statvfs.h -share/wasi-sysroot/include/wasm32-wasi/sys/stropts.h -share/wasi-sysroot/include/wasm32-wasi/sys/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sys/sysinfo.h -share/wasi-sysroot/include/wasm32-wasi/sys/time.h -share/wasi-sysroot/include/wasm32-wasi/sys/timeb.h -share/wasi-sysroot/include/wasm32-wasi/sys/times.h -share/wasi-sysroot/include/wasm32-wasi/sys/timex.h -share/wasi-sysroot/include/wasm32-wasi/sys/ttydefaults.h -share/wasi-sysroot/include/wasm32-wasi/sys/types.h -share/wasi-sysroot/include/wasm32-wasi/sys/uio.h -share/wasi-sysroot/include/wasm32-wasi/sys/un.h -share/wasi-sysroot/include/wasm32-wasi/sys/utsname.h -share/wasi-sysroot/include/wasm32-wasi/syscall.h -share/wasi-sysroot/include/wasm32-wasi/sysexits.h -share/wasi-sysroot/include/wasm32-wasi/tar.h -share/wasi-sysroot/include/wasm32-wasi/tgmath.h -share/wasi-sysroot/include/wasm32-wasi/threads.h -share/wasi-sysroot/include/wasm32-wasi/time.h -share/wasi-sysroot/include/wasm32-wasi/uchar.h -share/wasi-sysroot/include/wasm32-wasi/unistd.h -share/wasi-sysroot/include/wasm32-wasi/utime.h -share/wasi-sysroot/include/wasm32-wasi/values.h -share/wasi-sysroot/include/wasm32-wasi/wasi/api.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-busywait.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-environ.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-find-relpath.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc-nocwd.h -share/wasi-sysroot/include/wasm32-wasi/wasi/libc.h -share/wasi-sysroot/include/wasm32-wasi/wasi/version.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip1.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip2.h -share/wasi-sysroot/include/wasm32-wasi/wasi/wasip3.h -share/wasi-sysroot/include/wasm32-wasi/wchar.h -share/wasi-sysroot/include/wasm32-wasi/wctype.h -share/wasi-sysroot/lib/wasm32-wasi/crt1-command.o -share/wasi-sysroot/lib/wasm32-wasi/crt1-reactor.o -share/wasi-sysroot/lib/wasm32-wasi/crt1.o -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-long-double.a -share/wasi-sysroot/lib/wasm32-wasi/libc-printscan-no-floating-point.a -share/wasi-sysroot/lib/wasm32-wasi/libc.a -share/wasi-sysroot/lib/wasm32-wasi/libcrypt.a -share/wasi-sysroot/lib/wasm32-wasi/libdl.a -share/wasi-sysroot/lib/wasm32-wasi/libm.a -share/wasi-sysroot/lib/wasm32-wasi/libpthread.a -share/wasi-sysroot/lib/wasm32-wasi/libresolv.a -share/wasi-sysroot/lib/wasm32-wasi/librt.a -share/wasi-sysroot/lib/wasm32-wasi/libsetjmp.a -share/wasi-sysroot/lib/wasm32-wasi/libutil.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-getpid.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-mman.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-process-clocks.a -share/wasi-sysroot/lib/wasm32-wasi/libwasi-emulated-signal.a -share/wasi-sysroot/lib/wasm32-wasi/libxnet.a +share/wasi-sysroot/include/%%TRIPLE%%/__errno.h +share/wasi-sysroot/include/%%TRIPLE%%/__errno_values.h +share/wasi-sysroot/include/%%TRIPLE%%/__fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__function___isatty.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/__functions_memcpy.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_netinet_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_poll.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_string.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_resource.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_socket.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_sys_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_time.h +share/wasi-sysroot/include/%%TRIPLE%%/__header_unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_FD_SETSIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__macro_PAGESIZE.h +share/wasi-sysroot/include/%%TRIPLE%%/__mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__seek.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in6_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_in_addr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_iovec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_msghdr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_pollfd.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_rusage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_in6.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_storage.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_sockaddr_un.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_stat.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timespec.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_timeval.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tm.h +share/wasi-sysroot/include/%%TRIPLE%%/__struct_tms.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_DIR.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blkcnt_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_blksize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clock_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_clockid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_dev_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_fd_set.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_gid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_addr_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_in_port_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ino_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_mode_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nfds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_nlink_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_off_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sa_family_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_sigset_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_socklen_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_ssize_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_suseconds_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_time_t.h +share/wasi-sysroot/include/%%TRIPLE%%/__typedef_uid_t.h +share/wasi-sysroot/include/%%TRIPLE%%/alloca.h +share/wasi-sysroot/include/%%TRIPLE%%/ar.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/ftp.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/inet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/nameser_compat.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/telnet.h +share/wasi-sysroot/include/%%TRIPLE%%/arpa/tftp.h +share/wasi-sysroot/include/%%TRIPLE%%/assert.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/alltypes.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/float.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/hwcap.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/io.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ioctl_fix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/ipcstat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/posix.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/bits/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/byteswap.h +share/wasi-sysroot/include/%%TRIPLE%%/complex.h +share/wasi-sysroot/include/%%TRIPLE%%/cpio.h +share/wasi-sysroot/include/%%TRIPLE%%/crypt.h +share/wasi-sysroot/include/%%TRIPLE%%/ctype.h +share/wasi-sysroot/include/%%TRIPLE%%/dirent.h +share/wasi-sysroot/include/%%TRIPLE%%/dlfcn.h +share/wasi-sysroot/include/%%TRIPLE%%/endian.h +share/wasi-sysroot/include/%%TRIPLE%%/err.h +share/wasi-sysroot/include/%%TRIPLE%%/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/features.h +share/wasi-sysroot/include/%%TRIPLE%%/fenv.h +share/wasi-sysroot/include/%%TRIPLE%%/float.h +share/wasi-sysroot/include/%%TRIPLE%%/fmtmsg.h +share/wasi-sysroot/include/%%TRIPLE%%/fnmatch.h +share/wasi-sysroot/include/%%TRIPLE%%/fts.h +share/wasi-sysroot/include/%%TRIPLE%%/ftw.h +share/wasi-sysroot/include/%%TRIPLE%%/getopt.h +share/wasi-sysroot/include/%%TRIPLE%%/glob.h +share/wasi-sysroot/include/%%TRIPLE%%/iconv.h +share/wasi-sysroot/include/%%TRIPLE%%/ifaddrs.h +share/wasi-sysroot/include/%%TRIPLE%%/inttypes.h +share/wasi-sysroot/include/%%TRIPLE%%/iso646.h +share/wasi-sysroot/include/%%TRIPLE%%/langinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/libgen.h +share/wasi-sysroot/include/%%TRIPLE%%/limits.h +share/wasi-sysroot/include/%%TRIPLE%%/locale.h +share/wasi-sysroot/include/%%TRIPLE%%/malloc.h +share/wasi-sysroot/include/%%TRIPLE%%/math.h +share/wasi-sysroot/include/%%TRIPLE%%/memory.h +share/wasi-sysroot/include/%%TRIPLE%%/monetary.h +share/wasi-sysroot/include/%%TRIPLE%%/mqueue.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/icmp6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/igmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/in_systm.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip6.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/ip_icmp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/tcp.h +share/wasi-sysroot/include/%%TRIPLE%%/netinet/udp.h +share/wasi-sysroot/include/%%TRIPLE%%/netpacket/packet.h +share/wasi-sysroot/include/%%TRIPLE%%/nl_types.h +share/wasi-sysroot/include/%%TRIPLE%%/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/pthread.h +share/wasi-sysroot/include/%%TRIPLE%%/regex.h +share/wasi-sysroot/include/%%TRIPLE%%/sched.h +share/wasi-sysroot/include/%%TRIPLE%%/search.h +share/wasi-sysroot/include/%%TRIPLE%%/semaphore.h +share/wasi-sysroot/include/%%TRIPLE%%/setjmp.h +share/wasi-sysroot/include/%%TRIPLE%%/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/stdalign.h +share/wasi-sysroot/include/%%TRIPLE%%/stdbool.h +share/wasi-sysroot/include/%%TRIPLE%%/stdc-predef.h +share/wasi-sysroot/include/%%TRIPLE%%/stdint.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio.h +share/wasi-sysroot/include/%%TRIPLE%%/stdio_ext.h +share/wasi-sysroot/include/%%TRIPLE%%/stdlib.h +share/wasi-sysroot/include/%%TRIPLE%%/stdnoreturn.h +share/wasi-sysroot/include/%%TRIPLE%%/string.h +share/wasi-sysroot/include/%%TRIPLE%%/strings.h +share/wasi-sysroot/include/%%TRIPLE%%/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/dir.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/errno.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/eventfd.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/fcntl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/file.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ioctl.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/mman.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/param.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/poll.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/random.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/reg.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/resource.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/select.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/signal.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/socket.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stat.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/statvfs.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/stropts.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/sysinfo.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/time.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timeb.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/times.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/timex.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/ttydefaults.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/types.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/uio.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/un.h +share/wasi-sysroot/include/%%TRIPLE%%/sys/utsname.h +share/wasi-sysroot/include/%%TRIPLE%%/syscall.h +share/wasi-sysroot/include/%%TRIPLE%%/sysexits.h +share/wasi-sysroot/include/%%TRIPLE%%/tar.h +share/wasi-sysroot/include/%%TRIPLE%%/tgmath.h +share/wasi-sysroot/include/%%TRIPLE%%/threads.h +share/wasi-sysroot/include/%%TRIPLE%%/time.h +share/wasi-sysroot/include/%%TRIPLE%%/uchar.h +share/wasi-sysroot/include/%%TRIPLE%%/unistd.h +share/wasi-sysroot/include/%%TRIPLE%%/utime.h +share/wasi-sysroot/include/%%TRIPLE%%/values.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/api.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-busywait.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-environ.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-find-relpath.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc-nocwd.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/libc.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/version.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip1.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip2.h +share/wasi-sysroot/include/%%TRIPLE%%/wasi/wasip3.h +share/wasi-sysroot/include/%%TRIPLE%%/wchar.h +share/wasi-sysroot/include/%%TRIPLE%%/wctype.h +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-command.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1-reactor.o +share/wasi-sysroot/lib/%%TRIPLE%%/crt1.o +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-long-double.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc-printscan-no-floating-point.a +share/wasi-sysroot/lib/%%TRIPLE%%/libc.a +share/wasi-sysroot/lib/%%TRIPLE%%/libcrypt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libdl.a +share/wasi-sysroot/lib/%%TRIPLE%%/libm.a +share/wasi-sysroot/lib/%%TRIPLE%%/libpthread.a +share/wasi-sysroot/lib/%%TRIPLE%%/libresolv.a +share/wasi-sysroot/lib/%%TRIPLE%%/librt.a +share/wasi-sysroot/lib/%%TRIPLE%%/libsetjmp.a +share/wasi-sysroot/lib/%%TRIPLE%%/libutil.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-getpid.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-mman.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-process-clocks.a +share/wasi-sysroot/lib/%%TRIPLE%%/libwasi-emulated-signal.a +share/wasi-sysroot/lib/%%TRIPLE%%/libxnet.a diff --git a/devel/wasi-libcxx/Makefile b/devel/wasi-libcxx/Makefile index 99046af94f44..427270622376 100644 --- a/devel/wasi-libcxx/Makefile +++ b/devel/wasi-libcxx/Makefile @@ -1,88 +1,88 @@ PORTNAME= libcxx DISTVERSION?= 0 PORTREVISION?= 0 CATEGORIES= devel lang MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION:S/rc/-rc/}/ \ https://${PRE_}releases.llvm.org/${LLVM_RELEASE}/${RCDIR}/ PKGNAMEPREFIX= wasi- PKGNAMESUFFIX= ${LLVM_VERSION} DISTNAME= llvm-project-${DISTVERSION}.src DISTFILES= llvm-project-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= vishwin@FreeBSD.org COMMENT= C++ standard library for WebAssembly System Interface WWW= https://llvm.org/ LICENSE= LLVM2 LICENSE_NAME= Apache License 2.0 with LLVM Exceptions LICENSE_FILE= ${WRKSRC}/llvm/LICENSE.TXT LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= cmake tar:xz .if ${DISTVERSION} == 0 IGNORE= is a meta port; there is nothing to build PKGNAMESUFFIX= -master .else BUILD_DEPENDS= ${WASI_SYSROOT}/include/${TRIPLE}/stdlib.h:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} USES+= llvm:${LLVM_SUFFIX} .endif LLVM_RELEASE= ${DISTVERSION:C/rc.*//} LLVM_SUFFIX= ${LLVM_RELEASE:C/\.[0-9]\.[0-9]$//} DISTINFO_FILE= ${PORTSDIR}/${LLVM_PORT}/distinfo SSP_UNSAFE= yes NO_ARCH= yes PLIST= ${.CURDIR}/pkg-plist PLIST_SUB= TRIPLE=${TRIPLE} WASI_SYSROOT= ${LOCALBASE}/share/wasi-sysroot -TRIPLE= wasm32-wasi +TRIPLE= wasm32-wasip1 WITHOUT_CPU_CFLAGS= yes # try to sync with https://github.com/WebAssembly/wasi-sdk # wasi-sdk.cmake and cmake/wasi-sdk-sysroot.cmake CMAKE_INSTALL_PREFIX= ${PREFIX}/share/wasi-sysroot CMAKE_SOURCE_PATH= ${WRKSRC}/runtimes CMAKE_ARGS= -DCMAKE_SYSTEM_NAME=WASI \ -DCMAKE_SYSTEM_VERSION=1 \ -DCMAKE_SYSTEM_PROCESSOR=wasm32 \ -DCMAKE_AR=${LOCALBASE}/bin/llvm-ar${LLVM_VERSION} \ -DCMAKE_RANLIB=${LOCALBASE}/bin/llvm-ranlib${LLVM_VERSION} \ -DCMAKE_C_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_CXX_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_ASM_COMPILER_TARGET=${TRIPLE} \ -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER \ -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \ -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \ -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY \ -DCMAKE_C_COMPILER_WORKS=ON \ -DCMAKE_CXX_COMPILER_WORKS=ON \ -DCMAKE_SYSROOT=${WASI_SYSROOT} \ -DLIBCXX_ENABLE_THREADS:BOOL=OFF \ -DLIBCXX_HAS_PTHREAD_API:BOOL=OFF \ -DLIBCXX_HAS_EXTERNAL_THREAD_API:BOOL=OFF \ -DLIBCXX_HAS_WIN32_THREAD_API:BOOL=OFF \ -DLLVM_COMPILER_CHECKED=ON \ -DLIBCXX_ENABLE_SHARED:BOOL=OFF \ -DLIBCXX_ENABLE_EXCEPTIONS:BOOL=OFF \ -DLIBCXX_ENABLE_FILESYSTEM:BOOL=OFF \ -DLIBCXX_CXX_ABI=libcxxabi \ -DLIBCXX_HAS_MUSL_LIBC:BOOL=OFF \ -DLIBCXX_ABI_VERSION=2 \ -DLIBCXXABI_ENABLE_EXCEPTIONS:BOOL=OFF \ -DLIBCXXABI_ENABLE_SHARED:BOOL=OFF \ -DLIBCXXABI_SILENT_TERMINATE:BOOL=ON \ -DLIBCXXABI_ENABLE_THREADS:BOOL=OFF \ -DLIBCXXABI_HAS_PTHREAD_API:BOOL=OFF \ -DLIBCXXABI_HAS_EXTERNAL_THREAD_API:BOOL=OFF \ -DLIBCXXABI_HAS_WIN32_THREAD_API:BOOL=OFF \ -DLIBCXXABI_USE_LLVM_UNWINDER:BOOL=OFF \ -DUNIX:BOOL=ON \ -DLIBCXX_LIBDIR_SUFFIX=/${TRIPLE} \ -DLIBCXXABI_LIBDIR_SUFFIX=/${TRIPLE} \ -DLIBCXX_INCLUDE_TESTS=OFF \ -DLIBCXX_INCLUDE_BENCHMARKS=OFF \ -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" .include diff --git a/devel/wasi-libcxx17/Makefile b/devel/wasi-libcxx17/Makefile index 0d2be7bb14d0..7d933fc1ac48 100644 --- a/devel/wasi-libcxx17/Makefile +++ b/devel/wasi-libcxx17/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm17 DISTVERSION= 17.0.6 -PORTREVISION= 3 +PORTREVISION= 4 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libcxx18/Makefile b/devel/wasi-libcxx18/Makefile index 54c86bf98d4d..9c3c6484d0ef 100644 --- a/devel/wasi-libcxx18/Makefile +++ b/devel/wasi-libcxx18/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm18 DISTVERSION= 18.1.8 -PORTREVISION= 2 +PORTREVISION= 3 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libcxx19/Makefile b/devel/wasi-libcxx19/Makefile index ed001f806c00..fe3820983735 100644 --- a/devel/wasi-libcxx19/Makefile +++ b/devel/wasi-libcxx19/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm19 DISTVERSION= 19.1.7 -PORTREVISION= 1 +PORTREVISION= 2 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libcxx20/Makefile b/devel/wasi-libcxx20/Makefile index d969a76a5c69..7511787c8e87 100644 --- a/devel/wasi-libcxx20/Makefile +++ b/devel/wasi-libcxx20/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm20 DISTVERSION= 20.1.8 -PORTREVISION= 1 +PORTREVISION= 2 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libcxx21/Makefile b/devel/wasi-libcxx21/Makefile index 038f0bf87e69..1781c1749b73 100644 --- a/devel/wasi-libcxx21/Makefile +++ b/devel/wasi-libcxx21/Makefile @@ -1,7 +1,7 @@ # must sync with devel/llvm21 DISTVERSION= 21.1.8 -PORTREVISION= 1 +PORTREVISION= 2 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/devel/wasi-libcxx22/Makefile b/devel/wasi-libcxx22/Makefile index c0cf4f580659..1c3139fd923b 100644 --- a/devel/wasi-libcxx22/Makefile +++ b/devel/wasi-libcxx22/Makefile @@ -1,6 +1,7 @@ # must sync with devel/llvm22 DISTVERSION= 22.1.0 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../wasi-libcxx .include "${MASTERDIR}/Makefile" diff --git a/mail/thunderbird-esr/Makefile b/mail/thunderbird-esr/Makefile index d4be695a05e7..07663db7e39e 100644 --- a/mail/thunderbird-esr/Makefile +++ b/mail/thunderbird-esr/Makefile @@ -1,72 +1,74 @@ PORTNAME= thunderbird DISTVERSION= 140.8.1 PORTREVISION= 1 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above WWW= https://www.thunderbird.net/ BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.112:security/nss \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.15.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} LIB_DEPENDS= libjson-c.so:devel/json-c USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= thunderbird # cannot use system icu: calendar is completely broken by # https://unicode-org.atlassian.net/browse/ICU-22132 (fix not in 76.1) USE_MOZILLA= -icu -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 USES= tar:xz MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_OPTIONS+= --with-system-bz2 --with-system-jsonc MOZ_OPTIONS+= --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js OPTIONS_DEFAULT=CANBERRA .include "${.CURDIR}/../../www/firefox/Makefile.options" post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/comm/mail/app/nsMailApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 9f8285a199a1..f4f413e544da 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -1,72 +1,74 @@ PORTNAME= thunderbird DISTVERSION= 148.0.1 PORTREVISION= 1 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above WWW= https://www.thunderbird.net/ BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.120.1:security/nss \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.15.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} LIB_DEPENDS= libjson-c.so:devel/json-c USE_GECKO= gecko CONFLICTS_INSTALL= thunderbird-esr # cannot use system icu: calendar is completely broken by # https://unicode-org.atlassian.net/browse/ICU-22132 (fix not in 76.1) USE_MOZILLA= -icu -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 USES= tar:xz # helpful when testing beta WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_OPTIONS+= --with-system-bz2 --with-system-jsonc MOZ_OPTIONS+= --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js OPTIONS_DEFAULT=CANBERRA .include "${.CURDIR}/../../www/firefox/Makefile.options" post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/comm/mail/app/nsMailApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 23cbee9b6604..7d54ac01a82b 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -1,64 +1,66 @@ PORTNAME= firefox DISTVERSION= 140.9.0 PORTEPOCH= 2 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla WWW= https://www.firefox.com/ BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.112:security/nss \ icu>=76.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.14.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf2.13:devel/autoconf2.13 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox USE_MOZILLA= -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILLA}-snap/${MOZILLA}.desktop MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding \ --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot .include "${.CURDIR}/../../www/firefox/Makefile.options" post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 42a0654c8cb3..46e268c2acea 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -1,62 +1,64 @@ PORTNAME= firefox DISTVERSION= 149.0 PORTEPOCH= 2 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla WWW= https://www.firefox.com/ BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.121.0:security/nss \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.15.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr USE_MOZILLA= -sqlite # work around bindgen not finding ICU, e.g. # dist/include/mozilla/intl/ICU4CGlue.h:8:10: fatal error: 'unicode/uenum.h' file not found, err: true CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" USES= tar:xz # helpful when testing beta WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding \ --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot .include "${.CURDIR}/../../www/firefox/Makefile.options" post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include diff --git a/www/librewolf/Makefile b/www/librewolf/Makefile index 7fbb1795b24f..cb26d00a3604 100644 --- a/www/librewolf/Makefile +++ b/www/librewolf/Makefile @@ -1,102 +1,104 @@ PORTNAME= librewolf DISTVERSION= 148.0.2 LWPATCH= -3 DISTVERSIONSUFFIX= ${LWPATCH}.source PORTREVISION= 2 CATEGORIES= www wayland MASTER_SITES= https://codeberg.org/api/packages/librewolf/generic/librewolf-source/${DISTVERSION}${LWPATCH}/ MAINTAINER= freebsd@sysctl.cz COMMENT= Custom version of Firefox, focused on privacy, security and freedom WWW= https://librewolf.net/ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.120.1:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.15.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} USE_GECKO= gecko USE_MOZILLA= -sqlite # work around bindgen not finding ICU, e.g. # dist/include/mozilla/intl/ICU4CGlue.h:8:10: fatal error: 'unicode/uenum.h' file not found, err: true CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" CONFIGURE_ENV+= MOZ_REQUIRE_SIGNING="" WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}${LWPATCH} FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png MOZILLA_CAP= ${MOZILLA:C/^(.).*/\1/:tu}${MOZILLA:C/^.//} MOZ_EXPORT= MOZ_TELEMETRY_REPORTING="" \ MOZILLA_OFFICIAL="1" \ MOZ_OFFICIAL_BRANDING="1" \ MOZ_APP_DISPLAYNAME="${MOZILLA_CAP}" \ MOZ_APP_NAME="${MOZILLA}" MOZ_OPTIONS= --enable-application=browser \ --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot \ --allow-addon-sideload \ --disable-crashreporter \ --disable-debug \ --disable-default-browser-agent \ --disable-tests \ --disable-updater \ --enable-hardening \ --enable-optimize \ --enable-release \ --with-app-name=${MOZILLA} \ --with-branding=browser/branding/${MOZILLA} \ --with-unsigned-addon-scopes=app,system \ --enable-bootstrap \ MOZ_CRASHREPORTER=0 \ MOZ_DATA_REPORTING=0 .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${ARCH} == i386 && ${MACHINE_CPU:Msse2} # is not enabled on i386 by default # Fix for error: always_inline function '_mm_setzero_si64' requires target feature 'sse2' CFLAGS_i386+= -msse2 .endif .if ${ARCH} == amd64 MOZ_OPTIONS+= --enable-rust-simd .endif post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ -e 's|firefox|${MOZILLA}|' \ -e 's|Firefox|${MOZILLA_CAP}|' \ <${.CURDIR}/../firefox/files/firefox.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure @${RM} ${WRKSRC}/mozconfig post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${DESKTOPDIR} ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include diff --git a/www/tor-browser/Makefile b/www/tor-browser/Makefile index 18b18cc9f577..00ddafbbe0ba 100644 --- a/www/tor-browser/Makefile +++ b/www/tor-browser/Makefile @@ -1,183 +1,187 @@ PORTNAME= tor-browser DISTVERSION= 16.0a1 PORTREVISION= 5 CATEGORIES= www net security wayland TAG_BASE= d366318349af0977ff23b492fa87e436e8672fdd TAG_TOR= 45b67d3be52f79e8a4b361fd04ab12f342ab0016 MASTER_SITES= TOR \ LOCAL/vvd \ https://build-sources.tbb.torproject.org/:source1 \ LOCAL/vvd:source1 \ LOCAL/jsm:source2 \ LOCAL/vvd:source2 \ https://dist.torproject.org/torbrowser/noscript/:source3 \ LOCAL/vvd:source3 \ https://gitlab.torproject.org/tpo/translation/-/archive/${TAG_BASE}.tar.gz?dummy=/:source4 \ LOCAL/vvd:source4 \ https://gitlab.torproject.org/tpo/translation/-/archive/${TAG_TOR}.tar.gz?dummy=/:source5 \ LOCAL/vvd:source5 MASTER_SITE_SUBDIR= torbrowser/${DISTVERSION}/:DEFAULT \ download/releases/:source3 DISTNAME= src-firefox-tor-browser-146.0a1-16.0-2-build2 MANUAL= manual_215922.zip NOSCRIPT= noscript-13.5.4.1984.xpi DISTFILES= ${DISTNAME}.tar.xz \ ${MANUAL}:source1 \ fonts-3--4348e1.tar.zst:source2 \ ${NOSCRIPT}:source3 \ tpo-translation-${TAG_BASE}_GL0.tar.gz:source4 \ tpo-translation-${TAG_TOR}_GL0.tar.gz:source5 MAINTAINER= freebsd@sysctl.cz COMMENT= Tor Browser for FreeBSD WWW= https://www.torproject.org/ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.112:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.14:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf2.13:devel/autoconf2.13 \ nasm:devel/nasm \ yasm:devel/yasm RUN_DEPENDS= tor:security/tor \ obfs4proxy:security/obfs4proxy-tor \ snowflake-client:security/snowflake-tor USES= compiler:c++11-lib libtool localbase:ldflags perl5 pkgconfig \ python shebangfix tar:xz USE_GECKO= gecko USE_GITHUB= nodefault TAG_L10N= 4b41b2ae00d50633e5e9d8204b0f45e468920743 GH_TUPLE= mozilla-l10n:firefox-l10n:${TAG_L10N}:ffl10n USE_MOZILLA= -sqlite LOCALES= af ar az be bg bs ca cs da de el es-ES et fa fi fr ga-IE gu-IN \ he hi-IN hr hu hy-AM id is it ja ka km ko lt lv mk mr ms my \ nb-NO nl nn-NO pa-IN pl pt-BR pt-PT ro ru sk sl sq sr sv-SE ta \ te th tl tr uk ur vi zh-CN zh-TW CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" CONFIGURE_ENV+= MOZ_CHROME_MULTILOCALE="${LOCALES}" MAKE_ENV+= LOCALES="${LOCALES}" CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 SSP_UNSAFE= yes BUNDLE_LIBS= yes SUB_FILES= fonts.conf tor-browser.desktop torrc-defaults WRKSRC= ${WRKDIR}/${DISTNAME:S/src-//} MOZ_EXPORT= MOZ_TELEMETRY_REPORTING="" \ MOZILLA_OFFICIAL="1" \ MOZ_APP_DISPLAYNAME="Tor Browser" \ MOZ_APP_NAME="tor-browser" \ MOZ_BRANDING_DIRECTORY="browser/branding/tb-release" \ MOZ_CHROME_MULTILOCALE="${LOCALES}" MOZ_OPTIONS= --with-base-browser-version=${DISTVERSION} \ --enable-optimize \ --enable-bundled-fonts \ --disable-tests \ --disable-debug \ --disable-crashreporter \ --disable-webrtc \ --disable-parental-controls \ --enable-proxy-bypass-protection \ --disable-system-policies \ --disable-backgroundtasks \ --with-distribution-id=org.torproject \ --with-branding=browser/branding/tb-release .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${ARCH} == i386 && ${MACHINE_CPU:Msse2} # is not enabled on i386 by default # Fix for error: always_inline function '_mm_setzero_si64' requires target feature 'sse2' CFLAGS_i386+= -msse2 .endif .if ${ARCH} == amd64 MOZ_OPTIONS+= --enable-rust-simd .endif .if ${ARCH} == powerpc64 MOZ_OPTIONS+= --without-wasm-sandboxed-libraries .else -BUILD_DEPENDS+= ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ +BUILD_DEPENDS+= ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} MOZILLA_PLIST_DIRS= bin lib share/applications share/pixmaps \ share/tor-browser MOZ_OPTIONS+= --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot .endif post-patch: @${REINPLACE_CMD} 's|LOCALBASE|${LOCALBASE}|g' \ "${WRKSRC}/browser/app/profile/000-tor-browser.js" @${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp +.if ${ARCH} != powerpc64 + @${REINPLACE_CMD} 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure +.endif ${MKDIR} ${WRKSRC}/tmp-manual ${UNZIP_NATIVE_CMD} -d ${WRKSRC}/tmp-manual ${DISTDIR}/${MANUAL} pre-configure: @${REINPLACE_CMD} 's|export MOZ_GOOGLE_.*||g' ${WRKSRC}/.mozconfig ${PYTHON_CMD} ${FILESDIR}/packagemanual.py ${WRKSRC}/tmp-manual/public \ ${WRKSRC}/browser/base/content/manual post-configure: ${MKDIR} ${WRKDIR}/.mozbuild/l10n-central ${CP} -r ${WRKDIR}/firefox-l10n-${TAG_L10N}/* \ ${WRKDIR}/.mozbuild/l10n-central .for i in ${LOCALES} ${CP} ${WRKDIR}/translation-${TAG_BASE}/${i}/base-browser.ftl \ ${WRKDIR}/.mozbuild/l10n-central/${i}/toolkit/toolkit/global/ ${CP} ${WRKDIR}/translation-${TAG_TOR}/${i}/tor-browser.ftl \ ${WRKDIR}/.mozbuild/l10n-central/${i}/toolkit/toolkit/global/ ${MKDIR} ${WRKDIR}/.mozbuild/l10n-central/${i}/browser/branding/tb-release \ ${WRKSRC}/toolkit/torbutton/chrome/locale/${i} ${CP} ${WRKDIR}/translation-${TAG_TOR}/${i}/brand.properties \ ${WRKDIR}/translation-${TAG_TOR}/${i}/branding/brand.ftl \ ${WRKDIR}/.mozbuild/l10n-central/${i}/browser/branding/tb-release . for j in onionLocation.properties settings.properties torConnect.properties \ torlauncher.properties ${CP} ${WRKDIR}/translation-${TAG_TOR}/${i}/${j} \ ${WRKSRC}/toolkit/torbutton/chrome/locale/${i}/ . endfor ${CP} -r ${WRKDIR}/translation-${TAG_TOR}/${i}/branding \ ${WRKSRC}/toolkit/torbutton/chrome/locale/${i}/ .endfor post-build: MOZBUILD_STATE_PATH=${WRKDIR}/.mozbuild AB_CD="multi" MOZ_AUTOMATION="1" \ PATH="`find ${WRKRDIR}/.mozbuild/srcdirs -name build -type d -print`/bin:${PATH}" \ ${WRKSRC}/mach package-multi-locale --locales ${LOCALES} post-install: ${MKDIR} ${STAGEDIR}${DATADIR} \ ${STAGEDIR}${PREFIX}/lib/tor-browser/fontconfig \ ${STAGEDIR}${PREFIX}/lib/tor-browser/fonts \ ${STAGEDIR}${PREFIX}/lib/tor-browser/distribution/extensions ${INSTALL_DATA} ${WRKDIR}/torrc-defaults \ ${STAGEDIR}${DATADIR}/torrc-defaults ${INSTALL_DATA} ${WRKDIR}/tor-browser.desktop ${STAGEDIR}${DESKTOPDIR} ${INSTALL_DATA} ${WRKDIR}/fonts.conf \ ${STAGEDIR}${PREFIX}/lib/tor-browser/fontconfig/fonts.conf (cd ${WRKDIR}/fonts && \ ${COPYTREE_SHARE} "*.otf *.ttf" ${STAGEDIR}${PREFIX}/lib/tor-browser/fonts) ${INSTALL_DATA} ${DISTDIR}/${NOSCRIPT} \ "${STAGEDIR}${PREFIX}/lib/tor-browser/distribution/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi" .include diff --git a/www/waterfox/Makefile b/www/waterfox/Makefile index e632ecec0cae..c87dc847622b 100644 --- a/www/waterfox/Makefile +++ b/www/waterfox/Makefile @@ -1,96 +1,98 @@ PORTNAME= waterfox DISTVERSION= 6.6.9 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www MAINTAINER= freebsd@sysctl.cz COMMENT= Distilled fork of Firefox WWW= https://www.waterfox.net/ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.118:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.45:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.15.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ - ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc@${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc++abi.a:devel/wasi-libcxx${LLVM_VERSION} \ + ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasip1/libc.a:devel/wasi-libc@${LLVM_VERSION} \ wasi-compiler-rt${LLVM_VERSION}>0:devel/wasi-compiler-rt${LLVM_VERSION} USE_GECKO= gecko USE_GITHUB= yes GH_ACCOUNT= BrowserWorks GH_TUPLE= BrowserWorks:l10n:b2b530a:l10n/waterfox/browser/locales USE_MOZILLA= -sqlite # work around bindgen not finding ICU, e.g. # dist/include/mozilla/intl/ICU4CGlue.h:8:10: fatal error: 'unicode/uenum.h' file not found, err: true CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" CONFIGURE_ENV+= MOZ_REQUIRE_SIGNING="" FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png MOZILLA_CAP= ${MOZILLA:C/^(.).*/\1/:tu}${MOZILLA:C/^.//} MOZ_EXPORT= MOZ_TELEMETRY_REPORTING="" \ MOZILLA_OFFICIAL="1" \ MOZ_OFFICIAL_BRANDING="1" \ MOZ_APP_DISPLAYNAME="${MOZILLA_CAP}" \ MOZ_APP_NAME="${MOZILLA}" MOZ_OPTIONS= --enable-application=browser \ --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot \ --allow-addon-sideload \ --disable-crashreporter \ --disable-debug \ --disable-default-browser-agent \ --disable-tests \ --disable-updater \ --enable-hardening \ --enable-optimize \ --enable-release \ --with-app-name=${MOZILLA} \ --with-unsigned-addon-scopes=app,system \ --enable-bootstrap \ MOZ_CRASHREPORTER=0 \ MOZ_DATA_REPORTING=0 .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${ARCH} == i386 && ${MACHINE_CPU:Msse2} # is not enabled on i386 by default # Fix for error: always_inline function '_mm_setzero_si64' requires target feature 'sse2' CFLAGS_i386+= -msse2 .endif .if ${ARCH} == amd64 MOZ_OPTIONS+= --enable-rust-simd .endif post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/waterfox.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp + @${REINPLACE_CMD} -e 's|wasm32-wasi|&p1|' \ + ${WRKSRC}/build/moz.configure/toolchain.configure post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${DESKTOPDIR} ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include