From 669b39697b2c989ae5e5777284e0bcb0ad8d05a2 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 20 Dec 2019 20:49:30 -0800 Subject: [PATCH 01/10] build: add cmake based build infrastructure Rather than rely on make, use CMake to generate the rules in the build system of choice. This allows building with `make` or `ninja`, and enables building the WASI libc on Windows. ``` cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=clang -DCMAKE_SYSTEM_NAME=Generic ninja -C build install ``` --- .azure-pipelines.yml | 21 +- CMakeLists.txt | 1125 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1145 insertions(+), 1 deletion(-) create mode 100644 CMakeLists.txt diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index a733ad475..44b6f2fae 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -51,5 +51,24 @@ jobs: echo "##vso[task.setvariable variable=WASM_NM;]$(rustc --print sysroot|sed 's|C:|/c|'|sed 's|\\|/|g')/lib/rustlib/x86_64-pc-windows-msvc/bin/llvm-nm.exe" displayName: Install llvm-nm (Windows) condition: and(succeeded(), eq( variables['Agent.OS'], 'Windows_NT' )) - - script: make -j4 + - bash: | + echo "##vso[task.setvariable variable=LLVM_AR]$(which llvm-ar)" + displayName: Find llvm-ar (!Windows) + condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT'))) + - script: | + echo ##vso[task.setvariable variable=LLVM_AR]%CD%\citools\clang-rust\bin\llvm-ar.exe + displayName: Find llvm-ar (Windows) + condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) + - task: CMake@1 + inputs: + workingDirectory: $(Build.BinariesDirectory) + cmakeArgs: -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_AR=$(LLVM_AR) -DCMAKE_C_COMPILER=clang -S $(Build.SourcesDirectory) + displayName: Configure + - task: CMake@1 + inputs: + workingDirectory: $(Build.BinariesDirectory) + cmakeArgs: --build . displayName: Build + - publish: $(Build.BinariesDirectory)/sysroot + artifact: wasi-libc + condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..b9ce44c78 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,1125 @@ +cmake_minimum_required(VERSION 3.12.1) + +project(wasi-libc + LANGUAGES C) + +set(CMAKE_C_COMPILE_OPTIONS_TARGET "-target ") +set(CMAKE_C_COMPILER_TARGET wasm32-unknown-wasi CACHE STRING + "The target to compile for") + +include(CMakeDependentOption) + +option(ENABLE_THREADS "enable threads" OFF) +option(BUILD_DLMALLOC "build dlmalloc" YES) +cmake_dependent_option(BUILD_LIBC_BOTTOM_HALF "build libc bottom half" YES + "BUILD_DLMALLOC" YES) +cmake_dependent_option(BUILD_LIBC_TOP_HALF "build libc top half" YES + "BUILD_LIBC_BOTTOM_HALF" YES) + +add_compile_options(--sysroot=${CMAKE_BINARY_DIR}/sysroot) + +# WebAssembly floating point match doesn't trap +# TODO: add -fno-signaling-nans when the compiler supports it +add_compile_options(-fno-trapping-math) +if(ENABLE_THREADS) + add_compile_options(-mthread-model posix -pthread) +else() + add_compile_options(-mthread-model single) +endif() + +# sysroot +add_custom_target(sysroot) +add_custom_command(TARGET sysroot POST_BUILD + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/arpa + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/bits + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/netinet + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/netpacket + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/sys + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/wasi + + # basic headers + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__errno.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__functions_malloc.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__functions_memcpy.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__header_inttypes.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__macro_PAGESIZE.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__struct_stat.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__struct_timespec.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blkcnt_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blksize_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_clock_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_dev_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_gid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ino_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_mode_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_nlink_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_off_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ssize_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_suseconds_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_time_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_uid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + + # bottom-half public headers + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__errno_values.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__fd_set.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__function___isatty.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_bits_signal.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_netinet_in.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_poll.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_stdlib.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_string.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_resource.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_socket.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_stat.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_time.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__macro_FD_SETSIZE.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__mode_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__seek.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in6_addr.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in_addr.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_iovec.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_msghdr.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_pollfd.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_rusage.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in6.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_storage.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_un.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_timeval.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tm.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tms.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_clockid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_DIR.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_fd_set.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_addr_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_port_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_nfds_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sa_family_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sigset_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_socklen_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/api.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc-find-relpath.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ + + # TODO(compnerd) use ${CMAKE_SED} + COMMAND sed -f ${PROJECT_SOURCE_DIR}/libc-top-half/musl/tools/mkalltypes.sed ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/alltypes.h.in ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alltypes.h.in > ${CMAKE_BINARY_DIR}/sysroot/include/bits/alltypes.h + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alloca.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ar.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/assert.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/byteswap.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/complex.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/cpio.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/crypt.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ctype.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/endian.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/err.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/errno.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/features.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fenv.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/float.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fmtmsg.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fnmatch.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ftw.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/getopt.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/glob.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iconv.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ifaddrs.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/inttypes.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iso646.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/langinfo.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/libgen.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/limits.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/locale.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/malloc.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/math.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/memory.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/monetary.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/mqueue.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/nl_types.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/regex.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sched.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/search.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/semaphore.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdalign.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdbool.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdc-predef.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdint.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio_ext.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdlib.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdnoreturn.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/string.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/strings.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stropts.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/syscall.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sysexits.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tar.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tgmath.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/threads.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/time.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/uchar.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/values.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wchar.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wctype.h ${CMAKE_BINARY_DIR}/sysroot/include/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/ftp.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/inet.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser_compat.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/telnet.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/tftp.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/icmp6.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/igmp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in_systm.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip6.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip_icmp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/tcp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/udp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netpacket/packet.h ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/dir.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/errno.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/eventfd.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/file.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/mman.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/param.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/random.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/reg.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/resource.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/select.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/socket.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stat.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stropts.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/syscall.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/sysinfo.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timeb.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/time.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/times.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timex.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ttydefaults.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/types.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/uio.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/un.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/utsname.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + + # generic/bits + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/fenv.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/hwcap.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/ioctl_fix.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/io.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/mman.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/resource.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/termios.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + + # wasm32/bits + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/endian.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/float.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/limits.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/posix.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/reg.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/socket.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stat.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stdint.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/) +if(ENABLE_THREADS) + add_custom_command(TARGET sysroot POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/aio.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/pthread.h ${CMAKE_BINARY_DIR}/sysroot/include/) +endif() +add_custom_command(TARGET sysroot POST_BUILD + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libm.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/librt.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libpthread.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libcrypt.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libutil.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libxnet.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libresolv.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libdl.a) + + +# startup files +if(BUILD_LIBC_BOTTOM_HALF) + add_library(startup-files OBJECT + libc-bottom-half/crt/crt1.c) +else() + add_library(startup-files OBJECT + basics/crt/crt1.c) +endif() +add_dependencies(startup-files sysroot) + + +add_library(c-printscan-no-floating-point STATIC + libc-top-half/musl/src/internal/floatscan.c + libc-top-half/musl/src/stdio/vfprintf.c + libc-top-half/musl/src/stdio/vfwprintf.c + libc-top-half/musl/src/stdio/vfscanf.c + libc-top-half/musl/src/stdlib/strtod.c + libc-top-half/musl/src/stdlib/wcstod.c) +set_target_properties(c-printscan-no-floating-point PROPERTIES + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) +target_compile_definitions(c-printscan-no-floating-point PRIVATE + __wasilibc_printscan_no_floating_point + __wasilibc_printscan_floating_point_support_option="remove -lc-printscan-no-floating-point from the link command") +target_compile_options(c-printscan-no-floating-point PRIVATE + -Wno-parentheses + -Wno-shift-op-parentheses + -Wno-bitwise-op-parentheses + -Wno-logical-op-parentheses + -Wno-string-plus-int + -Wno-dangling-else + -Wno-unknown-pragmas) +target_include_directories(c-printscan-no-floating-point PRIVATE + libc-top-half/musl/src/include + libc-top-half/musl/src/internal + libc-top-half/musl/arch/wasm32 + libc-top-half/musl/arch/generic + libc-top-half/headers/private) +add_dependencies(c-printscan-no-floating-point sysroot) + + +add_library(c-printscan-long-double STATIC + libc-top-half/musl/src/internal/floatscan.c + libc-top-half/musl/src/stdio/vfprintf.c + libc-top-half/musl/src/stdio/vfwprintf.c + libc-top-half/musl/src/stdio/vfscanf.c + libc-top-half/musl/src/stdlib/strtod.c + libc-top-half/musl/src/stdlib/wcstod.c) +set_target_properties(c-printscan-long-double PROPERTIES + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) +target_compile_options(c-printscan-long-double PRIVATE + -Wno-parentheses + -Wno-shift-op-parentheses + -Wno-bitwise-op-parentheses + -Wno-logical-op-parentheses + -Wno-string-plus-int + -Wno-dangling-else + -Wno-unknown-pragmas) +target_include_directories(c-printscan-long-double PRIVATE + libc-top-half/musl/src/include + libc-top-half/musl/src/internal + libc-top-half/musl/arch/wasm32 + libc-top-half/musl/arch/generic + libc-top-half/headers/private) +add_dependencies(c-printscan-long-double sysroot) + + +add_library(wasi-emulated-mman STATIC + libc-bottom-half/mman/mman.c) +set_target_properties(wasi-emulated-mman PROPERTIES + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) +add_dependencies(wasi-emulated-mman sysroot) + + +add_library(c STATIC + basics/sources/abort.c + basics/sources/complex-builtins.c + basics/sources/reallocarray.c + $<$>:basics/sources/string.c> + basics/sources/math/fmin-fmax.c + basics/sources/math/math-builtins.c) +set_target_properties(c PROPERTIES + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) +add_dependencies(c sysroot) +if(BUILD_DLMALLOC) + add_library(dlmalloc OBJECT + dlmalloc/src/dlmalloc.c) + target_include_directories(dlmalloc PRIVATE + dlmalloc/include) + add_dependencies(dlmalloc sysroot) + + target_link_libraries(c PRIVATE + dlmalloc) +endif() +if(BUILD_LIBC_BOTTOM_HALF) + add_library(libc-bottom-half OBJECT + $<$>:libc-bottom-half/cloudlibc/src/libc/stdlib/qsort.c> + libc-bottom-half/cloudlibc/src/libc/stdlib/_Exit.c + libc-bottom-half/cloudlibc/src/libc/sched/sched_yield.c + libc-bottom-half/cloudlibc/src/libc/unistd/usleep.c + libc-bottom-half/cloudlibc/src/libc/unistd/pwrite.c + libc-bottom-half/cloudlibc/src/libc/unistd/ftruncate.c + libc-bottom-half/cloudlibc/src/libc/unistd/write.c + libc-bottom-half/cloudlibc/src/libc/unistd/symlinkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/unlinkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/close.c + libc-bottom-half/cloudlibc/src/libc/unistd/lseek.c + libc-bottom-half/cloudlibc/src/libc/unistd/faccessat.c + libc-bottom-half/cloudlibc/src/libc/unistd/fsync.c + libc-bottom-half/cloudlibc/src/libc/unistd/read.c + libc-bottom-half/cloudlibc/src/libc/unistd/linkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/sleep.c + libc-bottom-half/cloudlibc/src/libc/unistd/pread.c + libc-bottom-half/cloudlibc/src/libc/unistd/fdatasync.c + libc-bottom-half/cloudlibc/src/libc/unistd/readlinkat.c + libc-bottom-half/cloudlibc/src/libc/sys/ioctl/ioctl.c + libc-bottom-half/cloudlibc/src/libc/sys/time/gettimeofday.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/shutdown.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/getsockopt.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/recv.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/send.c + libc-bottom-half/cloudlibc/src/libc/sys/select/select.c + libc-bottom-half/cloudlibc/src/libc/sys/select/pselect.c + libc-bottom-half/cloudlibc/src/libc/sys/times/times.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/writev.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/preadv.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/readv.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/pwritev.c + libc-bottom-half/cloudlibc/src/libc/sys/resource/getrusage.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/utimensat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/fstatat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/fstat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/futimens.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/mkdirat.c + libc-bottom-half/cloudlibc/src/libc/fcntl/fcntl.c + libc-bottom-half/cloudlibc/src/libc/fcntl/openat.c + libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fallocate.c + libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fadvise.c + libc-bottom-half/cloudlibc/src/libc/errno/errno.c + libc-bottom-half/cloudlibc/src/libc/time/clock.c + libc-bottom-half/cloudlibc/src/libc/time/clock_gettime.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_PROCESS_CPUTIME_ID.c + libc-bottom-half/cloudlibc/src/libc/time/clock_nanosleep.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_THREAD_CPUTIME_ID.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_REALTIME.c + libc-bottom-half/cloudlibc/src/libc/time/clock_getres.c + libc-bottom-half/cloudlibc/src/libc/time/time.c + libc-bottom-half/cloudlibc/src/libc/time/nanosleep.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_MONOTONIC.c + libc-bottom-half/cloudlibc/src/libc/dirent/closedir.c + libc-bottom-half/cloudlibc/src/libc/dirent/dirfd.c + libc-bottom-half/cloudlibc/src/libc/dirent/opendirat.c + libc-bottom-half/cloudlibc/src/libc/dirent/scandirat.c + libc-bottom-half/cloudlibc/src/libc/dirent/readdir.c + libc-bottom-half/cloudlibc/src/libc/dirent/rewinddir.c + libc-bottom-half/cloudlibc/src/libc/dirent/fdopendir.c + libc-bottom-half/cloudlibc/src/libc/dirent/fdclosedir.c + libc-bottom-half/cloudlibc/src/libc/dirent/telldir.c + libc-bottom-half/cloudlibc/src/libc/dirent/seekdir.c + libc-bottom-half/cloudlibc/src/libc/poll/poll.c + libc-bottom-half/cloudlibc/src/libc/stdio/renameat.c + libc-bottom-half/libpreopen/libpreopen.c + libc-bottom-half/sources/getentropy.c + libc-bottom-half/sources/__environ.c + libc-bottom-half/sources/__wasilibc_rmdirat.c + libc-bottom-half/sources/errno.c + libc-bottom-half/sources/__wasilibc_tell.c + libc-bottom-half/sources/pause.c + libc-bottom-half/sources/sbrk.c + libc-bottom-half/sources/isatty.c + $<$>:libc-bottom-half/sources/string.c> + libc-bottom-half/sources/__wasilibc_fd_renumber.c + libc-bottom-half/sources/__wasilibc_unlinkat.c + libc-bottom-half/sources/__original_main.c + libc-bottom-half/sources/truncate.c) + target_include_directories(libc-bottom-half PRIVATE SYSTEM + libc-bottom-half/headers/private + libc-bottom-half/cloudlibc/src/include + libc-bottom-half/cloudlibc/src) + add_dependencies(libc-bottom-half sysroot) + + target_link_libraries(c PRIVATE + libc-bottom-half) +endif() +if(BUILD_LIBC_TOP_HALF) + add_library(libc-top-half OBJECT + libc-top-half/musl/src/misc/a64l.c + libc-top-half/musl/src/misc/basename.c + libc-top-half/musl/src/misc/dirname.c + libc-top-half/musl/src/misc/ffs.c + libc-top-half/musl/src/misc/ffsl.c + libc-top-half/musl/src/misc/ffsll.c + libc-top-half/musl/src/misc/fmtmsg.c + libc-top-half/musl/src/misc/getdomainname.c + libc-top-half/musl/src/misc/gethostid.c + libc-top-half/musl/src/misc/getopt.c + libc-top-half/musl/src/misc/getopt_long.c + libc-top-half/musl/src/misc/getsubopt.c + libc-top-half/musl/src/misc/uname.c + libc-top-half/musl/src/misc/nftw.c + libc-top-half/musl/src/errno/strerror.c + libc-top-half/musl/src/network/htonl.c + libc-top-half/musl/src/network/htons.c + libc-top-half/musl/src/network/ntohl.c + libc-top-half/musl/src/network/ntohs.c + libc-top-half/musl/src/network/inet_ntop.c + libc-top-half/musl/src/network/inet_pton.c + libc-top-half/musl/src/network/inet_aton.c + libc-top-half/musl/src/network/in6addr_any.c + libc-top-half/musl/src/network/in6addr_loopback.c + libc-top-half/musl/src/fenv/fenv.c + libc-top-half/musl/src/fenv/fesetround.c + libc-top-half/musl/src/fenv/feupdateenv.c + libc-top-half/musl/src/fenv/fesetexceptflag.c + libc-top-half/musl/src/fenv/fegetexceptflag.c + libc-top-half/musl/src/fenv/feholdexcept.c + libc-top-half/musl/src/exit/exit.c + libc-top-half/musl/src/exit/atexit.c + libc-top-half/musl/src/exit/assert.c + libc-top-half/musl/src/exit/quick_exit.c + libc-top-half/musl/src/exit/at_quick_exit.c + libc-top-half/musl/src/time/strftime.c + libc-top-half/musl/src/time/asctime.c + libc-top-half/musl/src/time/asctime_r.c + libc-top-half/musl/src/time/ctime.c + libc-top-half/musl/src/time/ctime_r.c + libc-top-half/musl/src/time/wcsftime.c + libc-top-half/musl/src/time/strptime.c + libc-top-half/musl/src/time/difftime.c + libc-top-half/musl/src/time/timegm.c + libc-top-half/musl/src/time/ftime.c + libc-top-half/musl/src/time/gmtime.c + libc-top-half/musl/src/time/gmtime_r.c + libc-top-half/musl/src/time/timespec_get.c + libc-top-half/musl/src/time/getdate.c + libc-top-half/musl/src/time/localtime.c + libc-top-half/musl/src/time/localtime_r.c + libc-top-half/musl/src/time/mktime.c + libc-top-half/musl/src/time/__tm_to_secs.c + libc-top-half/musl/src/time/__month_to_secs.c + libc-top-half/musl/src/time/__secs_to_tm.c + libc-top-half/musl/src/time/__year_to_secs.c + libc-top-half/musl/src/time/__tz.c + libc-top-half/musl/src/fcntl/creat.c + libc-top-half/musl/src/dirent/alphasort.c + libc-top-half/musl/src/dirent/versionsort.c + libc-top-half/musl/src/env/clearenv.c + libc-top-half/musl/src/env/getenv.c + libc-top-half/musl/src/env/putenv.c + libc-top-half/musl/src/env/setenv.c + libc-top-half/musl/src/env/unsetenv.c + libc-top-half/musl/src/unistd/posix_close.c + libc-top-half/musl/src/internal/defsysinfo.c + libc-top-half/musl/src/internal/floatscan.c + libc-top-half/musl/src/internal/intscan.c + libc-top-half/musl/src/internal/libc.c + libc-top-half/musl/src/internal/shgetc.c + libc-top-half/musl/src/stdio/asprintf.c + libc-top-half/musl/src/stdio/clearerr.c + libc-top-half/musl/src/stdio/dprintf.c + libc-top-half/musl/src/stdio/ext2.c + libc-top-half/musl/src/stdio/ext.c + libc-top-half/musl/src/stdio/fclose.c + libc-top-half/musl/src/stdio/__fclose_ca.c + libc-top-half/musl/src/stdio/__fdopen.c + libc-top-half/musl/src/stdio/feof.c + libc-top-half/musl/src/stdio/ferror.c + libc-top-half/musl/src/stdio/fflush.c + libc-top-half/musl/src/stdio/fgetc.c + libc-top-half/musl/src/stdio/fgetln.c + libc-top-half/musl/src/stdio/fgetpos.c + libc-top-half/musl/src/stdio/fgets.c + libc-top-half/musl/src/stdio/fgetwc.c + libc-top-half/musl/src/stdio/fgetws.c + libc-top-half/musl/src/stdio/fileno.c + libc-top-half/musl/src/stdio/fmemopen.c + libc-top-half/musl/src/stdio/__fmodeflags.c + libc-top-half/musl/src/stdio/fopen.c + libc-top-half/musl/src/stdio/fopencookie.c + libc-top-half/musl/src/stdio/__fopen_rb_ca.c + libc-top-half/musl/src/stdio/fprintf.c + libc-top-half/musl/src/stdio/fputc.c + libc-top-half/musl/src/stdio/fputs.c + libc-top-half/musl/src/stdio/fputwc.c + libc-top-half/musl/src/stdio/fputws.c + libc-top-half/musl/src/stdio/fread.c + libc-top-half/musl/src/stdio/freopen.c + libc-top-half/musl/src/stdio/fscanf.c + libc-top-half/musl/src/stdio/fseek.c + libc-top-half/musl/src/stdio/fsetpos.c + libc-top-half/musl/src/stdio/ftell.c + libc-top-half/musl/src/stdio/fwide.c + libc-top-half/musl/src/stdio/fwprintf.c + libc-top-half/musl/src/stdio/fwrite.c + libc-top-half/musl/src/stdio/fwscanf.c + libc-top-half/musl/src/stdio/getc.c + libc-top-half/musl/src/stdio/getchar.c + libc-top-half/musl/src/stdio/getchar_unlocked.c + libc-top-half/musl/src/stdio/getc_unlocked.c + libc-top-half/musl/src/stdio/getdelim.c + libc-top-half/musl/src/stdio/getline.c + libc-top-half/musl/src/stdio/getw.c + libc-top-half/musl/src/stdio/getwc.c + libc-top-half/musl/src/stdio/getwchar.c + libc-top-half/musl/src/stdio/ofl_add.c + libc-top-half/musl/src/stdio/ofl.c + libc-top-half/musl/src/stdio/open_memstream.c + libc-top-half/musl/src/stdio/open_wmemstream.c + libc-top-half/musl/src/stdio/__overflow.c + libc-top-half/musl/src/stdio/perror.c + libc-top-half/musl/src/stdio/printf.c + libc-top-half/musl/src/stdio/putc.c + libc-top-half/musl/src/stdio/putchar.c + libc-top-half/musl/src/stdio/putchar_unlocked.c + libc-top-half/musl/src/stdio/putc_unlocked.c + libc-top-half/musl/src/stdio/puts.c + libc-top-half/musl/src/stdio/putw.c + libc-top-half/musl/src/stdio/putwc.c + libc-top-half/musl/src/stdio/putwchar.c + libc-top-half/musl/src/stdio/rewind.c + libc-top-half/musl/src/stdio/scanf.c + libc-top-half/musl/src/stdio/setbuf.c + libc-top-half/musl/src/stdio/setbuffer.c + libc-top-half/musl/src/stdio/setlinebuf.c + libc-top-half/musl/src/stdio/setvbuf.c + libc-top-half/musl/src/stdio/snprintf.c + libc-top-half/musl/src/stdio/sprintf.c + libc-top-half/musl/src/stdio/sscanf.c + libc-top-half/musl/src/stdio/stderr.c + libc-top-half/musl/src/stdio/stdin.c + libc-top-half/musl/src/stdio/__stdio_close.c + libc-top-half/musl/src/stdio/__stdio_exit.c + libc-top-half/musl/src/stdio/__stdio_read.c + libc-top-half/musl/src/stdio/__stdio_seek.c + libc-top-half/musl/src/stdio/__stdio_write.c + libc-top-half/musl/src/stdio/stdout.c + libc-top-half/musl/src/stdio/__stdout_write.c + libc-top-half/musl/src/stdio/__string_read.c + libc-top-half/musl/src/stdio/swprintf.c + libc-top-half/musl/src/stdio/swscanf.c + libc-top-half/musl/src/stdio/__toread.c + libc-top-half/musl/src/stdio/__towrite.c + libc-top-half/musl/src/stdio/__uflow.c + libc-top-half/musl/src/stdio/ungetc.c + libc-top-half/musl/src/stdio/ungetwc.c + libc-top-half/musl/src/stdio/vasprintf.c + libc-top-half/musl/src/stdio/vdprintf.c + libc-top-half/musl/src/stdio/vfprintf.c + libc-top-half/musl/src/stdio/vfscanf.c + libc-top-half/musl/src/stdio/vfwprintf.c + libc-top-half/musl/src/stdio/vfwscanf.c + libc-top-half/musl/src/stdio/vprintf.c + libc-top-half/musl/src/stdio/vscanf.c + libc-top-half/musl/src/stdio/vsnprintf.c + libc-top-half/musl/src/stdio/vsprintf.c + libc-top-half/musl/src/stdio/vsscanf.c + libc-top-half/musl/src/stdio/vswprintf.c + libc-top-half/musl/src/stdio/vswscanf.c + libc-top-half/musl/src/stdio/vwprintf.c + libc-top-half/musl/src/stdio/vwscanf.c + libc-top-half/musl/src/stdio/wprintf.c + libc-top-half/musl/src/stdio/wscanf.c + libc-top-half/musl/src/string/bcmp.c + libc-top-half/musl/src/string/bcopy.c + libc-top-half/musl/src/string/bzero.c + libc-top-half/musl/src/string/explicit_bzero.c + libc-top-half/musl/src/string/index.c + libc-top-half/musl/src/string/memccpy.c + libc-top-half/musl/src/string/memchr.c + libc-top-half/musl/src/string/memcmp.c + libc-top-half/musl/src/string/memcpy.c + libc-top-half/musl/src/string/memmem.c + libc-top-half/musl/src/string/memmove.c + libc-top-half/musl/src/string/mempcpy.c + libc-top-half/musl/src/string/memrchr.c + libc-top-half/musl/src/string/memset.c + libc-top-half/musl/src/string/rindex.c + libc-top-half/musl/src/string/stpcpy.c + libc-top-half/musl/src/string/stpncpy.c + libc-top-half/musl/src/string/strcasecmp.c + libc-top-half/musl/src/string/strcasestr.c + libc-top-half/musl/src/string/strcat.c + libc-top-half/musl/src/string/strchr.c + libc-top-half/musl/src/string/strchrnul.c + libc-top-half/musl/src/string/strcmp.c + libc-top-half/musl/src/string/strcpy.c + libc-top-half/musl/src/string/strcspn.c + libc-top-half/musl/src/string/strdup.c + libc-top-half/musl/src/string/strerror_r.c + libc-top-half/musl/src/string/strlcat.c + libc-top-half/musl/src/string/strlcpy.c + libc-top-half/musl/src/string/strlen.c + libc-top-half/musl/src/string/strncasecmp.c + libc-top-half/musl/src/string/strncat.c + libc-top-half/musl/src/string/strncmp.c + libc-top-half/musl/src/string/strncpy.c + libc-top-half/musl/src/string/strndup.c + libc-top-half/musl/src/string/strnlen.c + libc-top-half/musl/src/string/strpbrk.c + libc-top-half/musl/src/string/strrchr.c + libc-top-half/musl/src/string/strsep.c + libc-top-half/musl/src/string/strspn.c + libc-top-half/musl/src/string/strstr.c + libc-top-half/musl/src/string/strtok.c + libc-top-half/musl/src/string/strtok_r.c + libc-top-half/musl/src/string/strverscmp.c + libc-top-half/musl/src/string/swab.c + libc-top-half/musl/src/string/wcpcpy.c + libc-top-half/musl/src/string/wcpncpy.c + libc-top-half/musl/src/string/wcscasecmp.c + libc-top-half/musl/src/string/wcscasecmp_l.c + libc-top-half/musl/src/string/wcscat.c + libc-top-half/musl/src/string/wcschr.c + libc-top-half/musl/src/string/wcscmp.c + libc-top-half/musl/src/string/wcscpy.c + libc-top-half/musl/src/string/wcscspn.c + libc-top-half/musl/src/string/wcsdup.c + libc-top-half/musl/src/string/wcslen.c + libc-top-half/musl/src/string/wcsncasecmp.c + libc-top-half/musl/src/string/wcsncasecmp_l.c + libc-top-half/musl/src/string/wcsncat.c + libc-top-half/musl/src/string/wcsncmp.c + libc-top-half/musl/src/string/wcsncpy.c + libc-top-half/musl/src/string/wcsnlen.c + libc-top-half/musl/src/string/wcspbrk.c + libc-top-half/musl/src/string/wcsrchr.c + libc-top-half/musl/src/string/wcsspn.c + libc-top-half/musl/src/string/wcsstr.c + libc-top-half/musl/src/string/wcstok.c + libc-top-half/musl/src/string/wcswcs.c + libc-top-half/musl/src/string/wmemchr.c + libc-top-half/musl/src/string/wmemcmp.c + libc-top-half/musl/src/string/wmemcpy.c + libc-top-half/musl/src/string/wmemmove.c + libc-top-half/musl/src/string/wmemset.c + libc-top-half/musl/src/locale/catclose.c + libc-top-half/musl/src/locale/catgets.c + libc-top-half/musl/src/locale/catopen.c + libc-top-half/musl/src/locale/c_locale.c + libc-top-half/musl/src/locale/duplocale.c + libc-top-half/musl/src/locale/freelocale.c + libc-top-half/musl/src/locale/iconv.c + libc-top-half/musl/src/locale/iconv_close.c + libc-top-half/musl/src/locale/langinfo.c + libc-top-half/musl/src/locale/__lctrans.c + libc-top-half/musl/src/locale/localeconv.c + libc-top-half/musl/src/locale/locale_map.c + libc-top-half/musl/src/locale/__mo_lookup.c + libc-top-half/musl/src/locale/newlocale.c + libc-top-half/musl/src/locale/pleval.c + libc-top-half/musl/src/locale/setlocale.c + libc-top-half/musl/src/locale/strcoll.c + libc-top-half/musl/src/locale/strfmon.c + libc-top-half/musl/src/locale/strxfrm.c + libc-top-half/musl/src/locale/uselocale.c + libc-top-half/musl/src/locale/wcscoll.c + libc-top-half/musl/src/locale/wcsxfrm.c + libc-top-half/musl/src/stdlib/abs.c + libc-top-half/musl/src/stdlib/atof.c + libc-top-half/musl/src/stdlib/atoi.c + libc-top-half/musl/src/stdlib/atol.c + libc-top-half/musl/src/stdlib/atoll.c + libc-top-half/musl/src/stdlib/bsearch.c + libc-top-half/musl/src/stdlib/div.c + libc-top-half/musl/src/stdlib/ecvt.c + libc-top-half/musl/src/stdlib/fcvt.c + libc-top-half/musl/src/stdlib/gcvt.c + libc-top-half/musl/src/stdlib/imaxabs.c + libc-top-half/musl/src/stdlib/imaxdiv.c + libc-top-half/musl/src/stdlib/labs.c + libc-top-half/musl/src/stdlib/ldiv.c + libc-top-half/musl/src/stdlib/llabs.c + libc-top-half/musl/src/stdlib/lldiv.c + libc-top-half/musl/src/stdlib/qsort.c + libc-top-half/musl/src/stdlib/strtod.c + libc-top-half/musl/src/stdlib/strtol.c + libc-top-half/musl/src/stdlib/wcstod.c + libc-top-half/musl/src/stdlib/wcstol.c + libc-top-half/musl/src/search/hsearch.c + libc-top-half/musl/src/search/insque.c + libc-top-half/musl/src/search/lsearch.c + libc-top-half/musl/src/search/tdelete.c + libc-top-half/musl/src/search/tdestroy.c + libc-top-half/musl/src/search/tfind.c + libc-top-half/musl/src/search/tsearch.c + libc-top-half/musl/src/search/twalk.c + libc-top-half/musl/src/multibyte/btowc.c + libc-top-half/musl/src/multibyte/c16rtomb.c + libc-top-half/musl/src/multibyte/c32rtomb.c + libc-top-half/musl/src/multibyte/internal.c + libc-top-half/musl/src/multibyte/mblen.c + libc-top-half/musl/src/multibyte/mbrlen.c + libc-top-half/musl/src/multibyte/mbrtoc16.c + libc-top-half/musl/src/multibyte/mbrtoc32.c + libc-top-half/musl/src/multibyte/mbrtowc.c + libc-top-half/musl/src/multibyte/mbsinit.c + libc-top-half/musl/src/multibyte/mbsnrtowcs.c + libc-top-half/musl/src/multibyte/mbsrtowcs.c + libc-top-half/musl/src/multibyte/mbstowcs.c + libc-top-half/musl/src/multibyte/mbtowc.c + libc-top-half/musl/src/multibyte/wcrtomb.c + libc-top-half/musl/src/multibyte/wcsnrtombs.c + libc-top-half/musl/src/multibyte/wcsrtombs.c + libc-top-half/musl/src/multibyte/wcstombs.c + libc-top-half/musl/src/multibyte/wctob.c + libc-top-half/musl/src/multibyte/wctomb.c + libc-top-half/musl/src/regex/fnmatch.c + libc-top-half/musl/src/regex/glob.c + libc-top-half/musl/src/regex/regcomp.c + libc-top-half/musl/src/regex/regerror.c + libc-top-half/musl/src/regex/regexec.c + libc-top-half/musl/src/regex/tre-mem.c + libc-top-half/musl/src/prng/drand48.c + libc-top-half/musl/src/prng/lcong48.c + libc-top-half/musl/src/prng/lrand48.c + libc-top-half/musl/src/prng/mrand48.c + libc-top-half/musl/src/prng/__rand48_step.c + libc-top-half/musl/src/prng/rand.c + libc-top-half/musl/src/prng/random.c + libc-top-half/musl/src/prng/rand_r.c + libc-top-half/musl/src/prng/__seed48.c + libc-top-half/musl/src/prng/seed48.c + libc-top-half/musl/src/prng/srand48.c + libc-top-half/musl/src/conf/confstr.c + libc-top-half/musl/src/conf/fpathconf.c + libc-top-half/musl/src/conf/legacy.c + libc-top-half/musl/src/conf/pathconf.c + libc-top-half/musl/src/conf/sysconf.c + libc-top-half/musl/src/ctype/__ctype_b_loc.c + libc-top-half/musl/src/ctype/__ctype_get_mb_cur_max.c + libc-top-half/musl/src/ctype/__ctype_tolower_loc.c + libc-top-half/musl/src/ctype/__ctype_toupper_loc.c + libc-top-half/musl/src/ctype/isalnum.c + libc-top-half/musl/src/ctype/isalpha.c + libc-top-half/musl/src/ctype/isascii.c + libc-top-half/musl/src/ctype/isblank.c + libc-top-half/musl/src/ctype/iscntrl.c + libc-top-half/musl/src/ctype/isdigit.c + libc-top-half/musl/src/ctype/isgraph.c + libc-top-half/musl/src/ctype/islower.c + libc-top-half/musl/src/ctype/isprint.c + libc-top-half/musl/src/ctype/ispunct.c + libc-top-half/musl/src/ctype/isspace.c + libc-top-half/musl/src/ctype/isupper.c + libc-top-half/musl/src/ctype/iswalnum.c + libc-top-half/musl/src/ctype/iswalpha.c + libc-top-half/musl/src/ctype/iswblank.c + libc-top-half/musl/src/ctype/iswcntrl.c + libc-top-half/musl/src/ctype/iswctype.c + libc-top-half/musl/src/ctype/iswdigit.c + libc-top-half/musl/src/ctype/iswgraph.c + libc-top-half/musl/src/ctype/iswlower.c + libc-top-half/musl/src/ctype/iswprint.c + libc-top-half/musl/src/ctype/iswpunct.c + libc-top-half/musl/src/ctype/iswspace.c + libc-top-half/musl/src/ctype/iswupper.c + libc-top-half/musl/src/ctype/iswxdigit.c + libc-top-half/musl/src/ctype/isxdigit.c + libc-top-half/musl/src/ctype/toascii.c + libc-top-half/musl/src/ctype/tolower.c + libc-top-half/musl/src/ctype/toupper.c + libc-top-half/musl/src/ctype/towctrans.c + libc-top-half/musl/src/ctype/wcswidth.c + libc-top-half/musl/src/ctype/wctrans.c + libc-top-half/musl/src/ctype/wcwidth.c + libc-top-half/musl/src/math/acos.c + libc-top-half/musl/src/math/acosf.c + libc-top-half/musl/src/math/acosh.c + libc-top-half/musl/src/math/acoshf.c + libc-top-half/musl/src/math/acoshl.c + libc-top-half/musl/src/math/acosl.c + libc-top-half/musl/src/math/asin.c + libc-top-half/musl/src/math/asinf.c + libc-top-half/musl/src/math/asinh.c + libc-top-half/musl/src/math/asinhf.c + libc-top-half/musl/src/math/asinhl.c + libc-top-half/musl/src/math/asinl.c + libc-top-half/musl/src/math/atan2.c + libc-top-half/musl/src/math/atan2f.c + libc-top-half/musl/src/math/atan2l.c + libc-top-half/musl/src/math/atan.c + libc-top-half/musl/src/math/atanf.c + libc-top-half/musl/src/math/atanh.c + libc-top-half/musl/src/math/atanhf.c + libc-top-half/musl/src/math/atanhl.c + libc-top-half/musl/src/math/atanl.c + libc-top-half/musl/src/math/cbrt.c + libc-top-half/musl/src/math/cbrtf.c + libc-top-half/musl/src/math/cbrtl.c + libc-top-half/musl/src/math/ceill.c + libc-top-half/musl/src/math/copysignl.c + libc-top-half/musl/src/math/__cos.c + libc-top-half/musl/src/math/cos.c + libc-top-half/musl/src/math/__cosdf.c + libc-top-half/musl/src/math/cosf.c + libc-top-half/musl/src/math/cosh.c + libc-top-half/musl/src/math/coshf.c + libc-top-half/musl/src/math/coshl.c + libc-top-half/musl/src/math/__cosl.c + libc-top-half/musl/src/math/cosl.c + libc-top-half/musl/src/math/erf.c + libc-top-half/musl/src/math/erff.c + libc-top-half/musl/src/math/erfl.c + libc-top-half/musl/src/math/exp10.c + libc-top-half/musl/src/math/exp10f.c + libc-top-half/musl/src/math/exp10l.c + libc-top-half/musl/src/math/exp2.c + libc-top-half/musl/src/math/exp2f.c + libc-top-half/musl/src/math/exp2f_data.c + libc-top-half/musl/src/math/exp2l.c + libc-top-half/musl/src/math/exp.c + libc-top-half/musl/src/math/exp_data.c + libc-top-half/musl/src/math/expf.c + libc-top-half/musl/src/math/expl.c + libc-top-half/musl/src/math/expm1.c + libc-top-half/musl/src/math/expm1f.c + libc-top-half/musl/src/math/expm1l.c + libc-top-half/musl/src/math/__expo2.c + libc-top-half/musl/src/math/__expo2f.c + libc-top-half/musl/src/math/fabsl.c + libc-top-half/musl/src/math/fdim.c + libc-top-half/musl/src/math/fdimf.c + libc-top-half/musl/src/math/fdiml.c + libc-top-half/musl/src/math/finite.c + libc-top-half/musl/src/math/finitef.c + libc-top-half/musl/src/math/floorl.c + libc-top-half/musl/src/math/fma.c + libc-top-half/musl/src/math/fmaf.c + libc-top-half/musl/src/math/fmal.c + libc-top-half/musl/src/math/fmaxl.c + libc-top-half/musl/src/math/fminl.c + libc-top-half/musl/src/math/fmod.c + libc-top-half/musl/src/math/fmodf.c + libc-top-half/musl/src/math/fmodl.c + libc-top-half/musl/src/math/frexp.c + libc-top-half/musl/src/math/frexpf.c + libc-top-half/musl/src/math/frexpl.c + libc-top-half/musl/src/math/hypot.c + libc-top-half/musl/src/math/hypotf.c + libc-top-half/musl/src/math/hypotl.c + libc-top-half/musl/src/math/ilogb.c + libc-top-half/musl/src/math/ilogbf.c + libc-top-half/musl/src/math/ilogbl.c + libc-top-half/musl/src/math/__invtrigl.c + libc-top-half/musl/src/math/j0.c + libc-top-half/musl/src/math/j0f.c + libc-top-half/musl/src/math/j1.c + libc-top-half/musl/src/math/j1f.c + libc-top-half/musl/src/math/jn.c + libc-top-half/musl/src/math/jnf.c + libc-top-half/musl/src/math/ldexp.c + libc-top-half/musl/src/math/ldexpf.c + libc-top-half/musl/src/math/ldexpl.c + libc-top-half/musl/src/math/lgamma.c + libc-top-half/musl/src/math/lgammaf.c + libc-top-half/musl/src/math/lgammaf_r.c + libc-top-half/musl/src/math/lgammal.c + libc-top-half/musl/src/math/lgamma_r.c + libc-top-half/musl/src/math/llrint.c + libc-top-half/musl/src/math/llrintf.c + libc-top-half/musl/src/math/llrintl.c + libc-top-half/musl/src/math/llround.c + libc-top-half/musl/src/math/llroundf.c + libc-top-half/musl/src/math/llroundl.c + libc-top-half/musl/src/math/log10.c + libc-top-half/musl/src/math/log10f.c + libc-top-half/musl/src/math/log10l.c + libc-top-half/musl/src/math/log1p.c + libc-top-half/musl/src/math/log1pf.c + libc-top-half/musl/src/math/log1pl.c + libc-top-half/musl/src/math/log2.c + libc-top-half/musl/src/math/log2_data.c + libc-top-half/musl/src/math/log2f.c + libc-top-half/musl/src/math/log2f_data.c + libc-top-half/musl/src/math/log2l.c + libc-top-half/musl/src/math/logb.c + libc-top-half/musl/src/math/logbf.c + libc-top-half/musl/src/math/logbl.c + libc-top-half/musl/src/math/log.c + libc-top-half/musl/src/math/log_data.c + libc-top-half/musl/src/math/logf.c + libc-top-half/musl/src/math/logf_data.c + libc-top-half/musl/src/math/logl.c + libc-top-half/musl/src/math/lrint.c + libc-top-half/musl/src/math/lrintf.c + libc-top-half/musl/src/math/lrintl.c + libc-top-half/musl/src/math/lround.c + libc-top-half/musl/src/math/lroundf.c + libc-top-half/musl/src/math/lroundl.c + libc-top-half/musl/src/math/__math_divzero.c + libc-top-half/musl/src/math/__math_divzerof.c + libc-top-half/musl/src/math/__math_invalid.c + libc-top-half/musl/src/math/__math_invalidf.c + libc-top-half/musl/src/math/__math_oflow.c + libc-top-half/musl/src/math/__math_oflowf.c + libc-top-half/musl/src/math/__math_uflow.c + libc-top-half/musl/src/math/__math_uflowf.c + libc-top-half/musl/src/math/__math_xflow.c + libc-top-half/musl/src/math/__math_xflowf.c + libc-top-half/musl/src/math/modf.c + libc-top-half/musl/src/math/modff.c + libc-top-half/musl/src/math/modfl.c + libc-top-half/musl/src/math/nan.c + libc-top-half/musl/src/math/nanf.c + libc-top-half/musl/src/math/nanl.c + libc-top-half/musl/src/math/nearbyintl.c + libc-top-half/musl/src/math/nextafter.c + libc-top-half/musl/src/math/nextafterf.c + libc-top-half/musl/src/math/nextafterl.c + libc-top-half/musl/src/math/nexttoward.c + libc-top-half/musl/src/math/nexttowardf.c + libc-top-half/musl/src/math/nexttowardl.c + libc-top-half/musl/src/math/__polevll.c + libc-top-half/musl/src/math/pow.c + libc-top-half/musl/src/math/pow_data.c + libc-top-half/musl/src/math/powf.c + libc-top-half/musl/src/math/powf_data.c + libc-top-half/musl/src/math/powl.c + libc-top-half/musl/src/math/remainder.c + libc-top-half/musl/src/math/remainderf.c + libc-top-half/musl/src/math/remainderl.c + libc-top-half/musl/src/math/__rem_pio2.c + libc-top-half/musl/src/math/__rem_pio2f.c + libc-top-half/musl/src/math/__rem_pio2_large.c + libc-top-half/musl/src/math/__rem_pio2l.c + libc-top-half/musl/src/math/remquo.c + libc-top-half/musl/src/math/remquof.c + libc-top-half/musl/src/math/remquol.c + libc-top-half/musl/src/math/rintl.c + libc-top-half/musl/src/math/round.c + libc-top-half/musl/src/math/roundf.c + libc-top-half/musl/src/math/roundl.c + libc-top-half/musl/src/math/scalb.c + libc-top-half/musl/src/math/scalbf.c + libc-top-half/musl/src/math/scalbln.c + libc-top-half/musl/src/math/scalblnf.c + libc-top-half/musl/src/math/scalblnl.c + libc-top-half/musl/src/math/scalbn.c + libc-top-half/musl/src/math/scalbnf.c + libc-top-half/musl/src/math/scalbnl.c + libc-top-half/musl/src/math/signgam.c + libc-top-half/musl/src/math/significand.c + libc-top-half/musl/src/math/significandf.c + libc-top-half/musl/src/math/__sin.c + libc-top-half/musl/src/math/sin.c + libc-top-half/musl/src/math/sincos.c + libc-top-half/musl/src/math/sincosf.c + libc-top-half/musl/src/math/sincosl.c + libc-top-half/musl/src/math/__sindf.c + libc-top-half/musl/src/math/sinf.c + libc-top-half/musl/src/math/sinh.c + libc-top-half/musl/src/math/sinhf.c + libc-top-half/musl/src/math/sinhl.c + libc-top-half/musl/src/math/__sinl.c + libc-top-half/musl/src/math/sinl.c + libc-top-half/musl/src/math/sqrtl.c + libc-top-half/musl/src/math/__tan.c + libc-top-half/musl/src/math/tan.c + libc-top-half/musl/src/math/__tandf.c + libc-top-half/musl/src/math/tanf.c + libc-top-half/musl/src/math/tanh.c + libc-top-half/musl/src/math/tanhf.c + libc-top-half/musl/src/math/tanhl.c + libc-top-half/musl/src/math/__tanl.c + libc-top-half/musl/src/math/tanl.c + libc-top-half/musl/src/math/tgamma.c + libc-top-half/musl/src/math/tgammaf.c + libc-top-half/musl/src/math/tgammal.c + libc-top-half/musl/src/math/truncl.c + libc-top-half/musl/src/complex/cabs.c + libc-top-half/musl/src/complex/cabsf.c + libc-top-half/musl/src/complex/cabsl.c + libc-top-half/musl/src/complex/cacos.c + libc-top-half/musl/src/complex/cacosf.c + libc-top-half/musl/src/complex/cacosh.c + libc-top-half/musl/src/complex/cacoshf.c + libc-top-half/musl/src/complex/cacoshl.c + libc-top-half/musl/src/complex/cacosl.c + libc-top-half/musl/src/complex/carg.c + libc-top-half/musl/src/complex/cargf.c + libc-top-half/musl/src/complex/cargl.c + libc-top-half/musl/src/complex/casin.c + libc-top-half/musl/src/complex/casinf.c + libc-top-half/musl/src/complex/casinh.c + libc-top-half/musl/src/complex/casinhf.c + libc-top-half/musl/src/complex/casinhl.c + libc-top-half/musl/src/complex/casinl.c + libc-top-half/musl/src/complex/catan.c + libc-top-half/musl/src/complex/catanf.c + libc-top-half/musl/src/complex/catanh.c + libc-top-half/musl/src/complex/catanhf.c + libc-top-half/musl/src/complex/catanhl.c + libc-top-half/musl/src/complex/catanl.c + libc-top-half/musl/src/complex/ccos.c + libc-top-half/musl/src/complex/ccosf.c + libc-top-half/musl/src/complex/ccosh.c + libc-top-half/musl/src/complex/ccoshf.c + libc-top-half/musl/src/complex/ccoshl.c + libc-top-half/musl/src/complex/ccosl.c + libc-top-half/musl/src/complex/__cexp.c + libc-top-half/musl/src/complex/cexp.c + libc-top-half/musl/src/complex/__cexpf.c + libc-top-half/musl/src/complex/cexpf.c + libc-top-half/musl/src/complex/cexpl.c + libc-top-half/musl/src/complex/cimagl.c + libc-top-half/musl/src/complex/clog.c + libc-top-half/musl/src/complex/clogf.c + libc-top-half/musl/src/complex/clogl.c + libc-top-half/musl/src/complex/conj.c + libc-top-half/musl/src/complex/conjf.c + libc-top-half/musl/src/complex/conjl.c + libc-top-half/musl/src/complex/cpow.c + libc-top-half/musl/src/complex/cpowf.c + libc-top-half/musl/src/complex/cpowl.c + libc-top-half/musl/src/complex/cproj.c + libc-top-half/musl/src/complex/cprojf.c + libc-top-half/musl/src/complex/cprojl.c + libc-top-half/musl/src/complex/creall.c + libc-top-half/musl/src/complex/csin.c + libc-top-half/musl/src/complex/csinf.c + libc-top-half/musl/src/complex/csinh.c + libc-top-half/musl/src/complex/csinhf.c + libc-top-half/musl/src/complex/csinhl.c + libc-top-half/musl/src/complex/csinl.c + libc-top-half/musl/src/complex/csqrt.c + libc-top-half/musl/src/complex/csqrtf.c + libc-top-half/musl/src/complex/csqrtl.c + libc-top-half/musl/src/complex/ctan.c + libc-top-half/musl/src/complex/ctanf.c + libc-top-half/musl/src/complex/ctanh.c + libc-top-half/musl/src/complex/ctanhf.c + libc-top-half/musl/src/complex/ctanhl.c + libc-top-half/musl/src/complex/ctanl.c + libc-top-half/musl/src/crypt/crypt_blowfish.c + libc-top-half/musl/src/crypt/crypt.c + libc-top-half/musl/src/crypt/crypt_des.c + libc-top-half/musl/src/crypt/crypt_md5.c + libc-top-half/musl/src/crypt/crypt_r.c + libc-top-half/musl/src/crypt/crypt_sha256.c + libc-top-half/musl/src/crypt/crypt_sha512.c + libc-top-half/musl/src/crypt/encrypt.c + libc-top-half/sources/arc4random.c) + target_include_directories(libc-top-half PRIVATE + libc-top-half/musl/src/include + libc-top-half/musl/src/internal + libc-top-half/musl/arch/wasm32 + libc-top-half/musl/arch/generic + libc-top-half/headers/private) + target_compile_options(libc-top-half PRIVATE + -Wno-parentheses + -Wno-shift-op-parentheses + -Wno-bitwise-op-parentheses + -Wno-logical-op-parentheses + -Wno-string-plus-int + -Wno-dangling-else + -Wno-unknown-pragmas) + add_dependencies(libc-top-half sysroot) + + target_link_libraries(c PRIVATE + libc-top-half) +endif() From c6b8a2d144b06a0738518bf4953a9751afd63900 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 3 Jan 2020 19:02:39 -0800 Subject: [PATCH 02/10] build: restructure the commands, remove options This restructures the sysroot generation to reduce duplication by merging the commands that write to the same location. This should also speed up the job a bit by invoking fewer commands. Remove a few options that are not needed. This now no longer has an always out of date target allowing null-builds. --- CMakeLists.txt | 2046 ++++++++++++++++++++++++------------------------ 1 file changed, 1026 insertions(+), 1020 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9ce44c78..8dc8347ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,11 +10,6 @@ set(CMAKE_C_COMPILER_TARGET wasm32-unknown-wasi CACHE STRING include(CMakeDependentOption) option(ENABLE_THREADS "enable threads" OFF) -option(BUILD_DLMALLOC "build dlmalloc" YES) -cmake_dependent_option(BUILD_LIBC_BOTTOM_HALF "build libc bottom half" YES - "BUILD_DLMALLOC" YES) -cmake_dependent_option(BUILD_LIBC_TOP_HALF "build libc top half" YES - "BUILD_LIBC_BOTTOM_HALF" YES) add_compile_options(--sysroot=${CMAKE_BINARY_DIR}/sysroot) @@ -28,253 +23,261 @@ else() endif() # sysroot -add_custom_target(sysroot) -add_custom_command(TARGET sysroot POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/arpa - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/bits - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/netinet - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/netpacket - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/sys - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/wasi +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/alltypes.h.gen + # TODO(compnerd) use ${CMAKE_SED} + COMMAND sed -f ${PROJECT_SOURCE_DIR}/libc-top-half/musl/tools/mkalltypes.sed ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/alltypes.h.in ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alltypes.h.in > ${CMAKE_BINARY_DIR}/alltypes.h.gen + DEPENDS + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/tools/mkalltypes.sed + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/alltypes.h.in + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alltypes.h.in) - # basic headers - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__errno.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__functions_malloc.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__functions_memcpy.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__header_inttypes.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__macro_PAGESIZE.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__struct_stat.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__struct_timespec.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blkcnt_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blksize_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_clock_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_dev_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_gid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ino_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_mode_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_nlink_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_off_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ssize_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_suseconds_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_time_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__typedef_uid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot + COMMAND ${CMAKE_COMMAND} -E make_directory + ${CMAKE_BINARY_DIR}/sysroot/include/ + ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ + ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ - # bottom-half public headers - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__errno_values.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__fd_set.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__function___isatty.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_bits_signal.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_netinet_in.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_poll.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_stdlib.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_string.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_resource.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_socket.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_stat.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_time.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__macro_FD_SETSIZE.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__mode_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__seek.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in6_addr.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in_addr.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_iovec.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_msghdr.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_pollfd.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_rusage.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in6.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_storage.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_un.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_timeval.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tm.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tms.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_clockid_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_DIR.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_fd_set.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_addr_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_port_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_nfds_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sa_family_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sigset_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_socklen_t.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/basics/include/__errno.h + ${PROJECT_SOURCE_DIR}/basics/include/__functions_malloc.h + ${PROJECT_SOURCE_DIR}/basics/include/__functions_memcpy.h + ${PROJECT_SOURCE_DIR}/basics/include/__header_inttypes.h + ${PROJECT_SOURCE_DIR}/basics/include/__macro_PAGESIZE.h + ${PROJECT_SOURCE_DIR}/basics/include/__struct_stat.h + ${PROJECT_SOURCE_DIR}/basics/include/__struct_timespec.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blkcnt_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_blksize_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_clock_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_dev_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_gid_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ino_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_mode_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_nlink_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_off_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_ssize_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_suseconds_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_time_t.h + ${PROJECT_SOURCE_DIR}/basics/include/__typedef_uid_t.h - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/api.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc-find-relpath.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__errno_values.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__fd_set.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__function___isatty.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_bits_signal.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_dirent.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_fcntl.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_netinet_in.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_poll.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_stdlib.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_string.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_ioctl.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_resource.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_socket.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_sys_stat.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_time.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__header_unistd.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__macro_FD_SETSIZE.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__mode_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__seek.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_dirent.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in6_addr.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_in_addr.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_iovec.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_msghdr.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_pollfd.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_rusage.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in6.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_in.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_storage.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_sockaddr_un.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_timeval.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tm.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__struct_tms.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_clockid_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_DIR.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_fd_set.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_addr_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_in_port_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_nfds_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sa_family_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_sigset_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/__typedef_socklen_t.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/unistd.h - # TODO(compnerd) use ${CMAKE_SED} - COMMAND sed -f ${PROJECT_SOURCE_DIR}/libc-top-half/musl/tools/mkalltypes.sed ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/alltypes.h.in ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alltypes.h.in > ${CMAKE_BINARY_DIR}/sysroot/include/bits/alltypes.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alloca.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ar.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/assert.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/byteswap.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/complex.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/cpio.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/crypt.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ctype.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/dirent.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/endian.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/err.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/errno.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fcntl.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/features.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fenv.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/float.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fmtmsg.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fnmatch.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ftw.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/getopt.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/glob.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iconv.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ifaddrs.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/inttypes.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iso646.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/langinfo.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/libgen.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/limits.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/locale.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/malloc.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/math.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/memory.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/monetary.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/mqueue.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/nl_types.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/poll.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/regex.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sched.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/search.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/semaphore.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/signal.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdalign.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdbool.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdc-predef.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdint.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio_ext.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdlib.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdnoreturn.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/string.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/strings.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stropts.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/syscall.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sysexits.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tar.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tgmath.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/threads.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/time.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/uchar.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/unistd.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/values.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wchar.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wctype.h - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alloca.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ar.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/assert.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/byteswap.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/complex.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/cpio.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/crypt.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ctype.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/dirent.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/endian.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/err.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/errno.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/features.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fenv.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/float.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fmtmsg.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/fnmatch.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ftw.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/getopt.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/glob.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iconv.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/ifaddrs.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/inttypes.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/iso646.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/langinfo.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/libgen.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/limits.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/locale.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/malloc.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/math.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/memory.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/monetary.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/mqueue.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/nl_types.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/regex.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sched.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/search.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/semaphore.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdalign.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdbool.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdc-predef.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdint.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio_ext.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdio.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdlib.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stdnoreturn.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/string.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/strings.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/stropts.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/syscall.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sysexits.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tar.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/tgmath.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/threads.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/time.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/uchar.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/unistd.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/values.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wchar.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/wctype.h ${CMAKE_BINARY_DIR}/sysroot/include/ + $<$:${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/aio.h> + $<$:${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/pthread.h> + ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/ftp.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/inet.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser_compat.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/telnet.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/tftp.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/ftp.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/inet.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser_compat.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/telnet.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/tftp.h + ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/icmp6.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/igmp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in_systm.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip6.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip_icmp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/tcp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/udp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/fenv.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/hwcap.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/ioctl_fix.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/io.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/mman.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/poll.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/resource.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/termios.h - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netpacket/packet.h ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/endian.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/fcntl.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/float.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/ioctl.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/limits.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/posix.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/reg.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/signal.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/socket.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stat.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stdint.h + ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/dir.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/errno.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/eventfd.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/file.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/mman.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/param.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/random.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/reg.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/resource.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/select.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/socket.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stat.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stropts.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/syscall.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/sysinfo.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timeb.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/time.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/times.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timex.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ttydefaults.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/types.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/uio.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/un.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/utsname.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/icmp6.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/igmp.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in_systm.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip6.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/ip_icmp.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/tcp.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/udp.h + ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - # generic/bits - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/fenv.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/hwcap.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/ioctl_fix.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/io.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/mman.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/poll.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/resource.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/termios.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netpacket/packet.h + ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/dir.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/errno.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/eventfd.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/fcntl.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/file.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ioctl.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/mman.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/param.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/poll.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/random.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/reg.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/resource.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/select.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/signal.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/socket.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stat.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/stropts.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/syscall.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/sysinfo.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timeb.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/time.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/times.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/timex.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/ttydefaults.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/types.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/uio.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/un.h + ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/utsname.h + ${CMAKE_BINARY_DIR}/sysroot/include/sys/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/api.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc-find-relpath.h + ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc.h + ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ + + COMMAND ${CMAKE_COMMAND} -E copy_if_different + ${CMAKE_BINARY_DIR}/alltypes.h.gen + ${CMAKE_BINARY_DIR}/sysroot/include/bits/alltypes.h + + DEPENDS + ${CMAKE_BINARY_DIR}/alltypes.h.gen) +add_custom_target(sysroot-headers DEPENDS ${CMAKE_BINARY_DIR}/sysroot) - # wasm32/bits - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/endian.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/fcntl.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/float.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/ioctl.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/limits.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/posix.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/reg.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/signal.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/socket.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stat.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stdint.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/) -if(ENABLE_THREADS) - add_custom_command(TARGET sysroot POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/aio.h ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/pthread.h ${CMAKE_BINARY_DIR}/sysroot/include/) -endif() -add_custom_command(TARGET sysroot POST_BUILD - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libm.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/librt.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libpthread.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libcrypt.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libutil.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libxnet.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libresolv.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libdl.a) # startup files -if(BUILD_LIBC_BOTTOM_HALF) - add_library(startup-files OBJECT - libc-bottom-half/crt/crt1.c) -else() - add_library(startup-files OBJECT - basics/crt/crt1.c) -endif() -add_dependencies(startup-files sysroot) +add_library(startup-files OBJECT + libc-bottom-half/crt/crt1.c) +add_dependencies(startup-files sysroot-headers) -add_library(c-printscan-no-floating-point STATIC +add_library(c-printscan-no-floating-point libc-top-half/musl/src/internal/floatscan.c libc-top-half/musl/src/stdio/vfprintf.c libc-top-half/musl/src/stdio/vfwprintf.c @@ -282,7 +285,8 @@ add_library(c-printscan-no-floating-point STATIC libc-top-half/musl/src/stdlib/strtod.c libc-top-half/musl/src/stdlib/wcstod.c) set_target_properties(c-printscan-no-floating-point PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) target_compile_definitions(c-printscan-no-floating-point PRIVATE __wasilibc_printscan_no_floating_point __wasilibc_printscan_floating_point_support_option="remove -lc-printscan-no-floating-point from the link command") @@ -300,10 +304,10 @@ target_include_directories(c-printscan-no-floating-point PRIVATE libc-top-half/musl/arch/wasm32 libc-top-half/musl/arch/generic libc-top-half/headers/private) -add_dependencies(c-printscan-no-floating-point sysroot) +add_dependencies(c-printscan-no-floating-point sysroot-headers) -add_library(c-printscan-long-double STATIC +add_library(c-printscan-long-double libc-top-half/musl/src/internal/floatscan.c libc-top-half/musl/src/stdio/vfprintf.c libc-top-half/musl/src/stdio/vfwprintf.c @@ -311,7 +315,8 @@ add_library(c-printscan-long-double STATIC libc-top-half/musl/src/stdlib/strtod.c libc-top-half/musl/src/stdlib/wcstod.c) set_target_properties(c-printscan-long-double PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) target_compile_options(c-printscan-long-double PRIVATE -Wno-parentheses -Wno-shift-op-parentheses @@ -326,800 +331,801 @@ target_include_directories(c-printscan-long-double PRIVATE libc-top-half/musl/arch/wasm32 libc-top-half/musl/arch/generic libc-top-half/headers/private) -add_dependencies(c-printscan-long-double sysroot) +add_dependencies(c-printscan-long-double sysroot-headers) add_library(wasi-emulated-mman STATIC libc-bottom-half/mman/mman.c) set_target_properties(wasi-emulated-mman PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) -add_dependencies(wasi-emulated-mman sysroot) +add_dependencies(wasi-emulated-mman sysroot-headers) -add_library(c STATIC +add_library(c basics/sources/abort.c basics/sources/complex-builtins.c basics/sources/reallocarray.c - $<$>:basics/sources/string.c> basics/sources/math/fmin-fmax.c basics/sources/math/math-builtins.c) set_target_properties(c PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) -add_dependencies(c sysroot) -if(BUILD_DLMALLOC) - add_library(dlmalloc OBJECT - dlmalloc/src/dlmalloc.c) - target_include_directories(dlmalloc PRIVATE - dlmalloc/include) - add_dependencies(dlmalloc sysroot) + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/sysroot/lib) +add_dependencies(c sysroot-headers) - target_link_libraries(c PRIVATE - dlmalloc) -endif() -if(BUILD_LIBC_BOTTOM_HALF) - add_library(libc-bottom-half OBJECT - $<$>:libc-bottom-half/cloudlibc/src/libc/stdlib/qsort.c> - libc-bottom-half/cloudlibc/src/libc/stdlib/_Exit.c - libc-bottom-half/cloudlibc/src/libc/sched/sched_yield.c - libc-bottom-half/cloudlibc/src/libc/unistd/usleep.c - libc-bottom-half/cloudlibc/src/libc/unistd/pwrite.c - libc-bottom-half/cloudlibc/src/libc/unistd/ftruncate.c - libc-bottom-half/cloudlibc/src/libc/unistd/write.c - libc-bottom-half/cloudlibc/src/libc/unistd/symlinkat.c - libc-bottom-half/cloudlibc/src/libc/unistd/unlinkat.c - libc-bottom-half/cloudlibc/src/libc/unistd/close.c - libc-bottom-half/cloudlibc/src/libc/unistd/lseek.c - libc-bottom-half/cloudlibc/src/libc/unistd/faccessat.c - libc-bottom-half/cloudlibc/src/libc/unistd/fsync.c - libc-bottom-half/cloudlibc/src/libc/unistd/read.c - libc-bottom-half/cloudlibc/src/libc/unistd/linkat.c - libc-bottom-half/cloudlibc/src/libc/unistd/sleep.c - libc-bottom-half/cloudlibc/src/libc/unistd/pread.c - libc-bottom-half/cloudlibc/src/libc/unistd/fdatasync.c - libc-bottom-half/cloudlibc/src/libc/unistd/readlinkat.c - libc-bottom-half/cloudlibc/src/libc/sys/ioctl/ioctl.c - libc-bottom-half/cloudlibc/src/libc/sys/time/gettimeofday.c - libc-bottom-half/cloudlibc/src/libc/sys/socket/shutdown.c - libc-bottom-half/cloudlibc/src/libc/sys/socket/getsockopt.c - libc-bottom-half/cloudlibc/src/libc/sys/socket/recv.c - libc-bottom-half/cloudlibc/src/libc/sys/socket/send.c - libc-bottom-half/cloudlibc/src/libc/sys/select/select.c - libc-bottom-half/cloudlibc/src/libc/sys/select/pselect.c - libc-bottom-half/cloudlibc/src/libc/sys/times/times.c - libc-bottom-half/cloudlibc/src/libc/sys/uio/writev.c - libc-bottom-half/cloudlibc/src/libc/sys/uio/preadv.c - libc-bottom-half/cloudlibc/src/libc/sys/uio/readv.c - libc-bottom-half/cloudlibc/src/libc/sys/uio/pwritev.c - libc-bottom-half/cloudlibc/src/libc/sys/resource/getrusage.c - libc-bottom-half/cloudlibc/src/libc/sys/stat/utimensat.c - libc-bottom-half/cloudlibc/src/libc/sys/stat/fstatat.c - libc-bottom-half/cloudlibc/src/libc/sys/stat/fstat.c - libc-bottom-half/cloudlibc/src/libc/sys/stat/futimens.c - libc-bottom-half/cloudlibc/src/libc/sys/stat/mkdirat.c - libc-bottom-half/cloudlibc/src/libc/fcntl/fcntl.c - libc-bottom-half/cloudlibc/src/libc/fcntl/openat.c - libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fallocate.c - libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fadvise.c - libc-bottom-half/cloudlibc/src/libc/errno/errno.c - libc-bottom-half/cloudlibc/src/libc/time/clock.c - libc-bottom-half/cloudlibc/src/libc/time/clock_gettime.c - libc-bottom-half/cloudlibc/src/libc/time/CLOCK_PROCESS_CPUTIME_ID.c - libc-bottom-half/cloudlibc/src/libc/time/clock_nanosleep.c - libc-bottom-half/cloudlibc/src/libc/time/CLOCK_THREAD_CPUTIME_ID.c - libc-bottom-half/cloudlibc/src/libc/time/CLOCK_REALTIME.c - libc-bottom-half/cloudlibc/src/libc/time/clock_getres.c - libc-bottom-half/cloudlibc/src/libc/time/time.c - libc-bottom-half/cloudlibc/src/libc/time/nanosleep.c - libc-bottom-half/cloudlibc/src/libc/time/CLOCK_MONOTONIC.c - libc-bottom-half/cloudlibc/src/libc/dirent/closedir.c - libc-bottom-half/cloudlibc/src/libc/dirent/dirfd.c - libc-bottom-half/cloudlibc/src/libc/dirent/opendirat.c - libc-bottom-half/cloudlibc/src/libc/dirent/scandirat.c - libc-bottom-half/cloudlibc/src/libc/dirent/readdir.c - libc-bottom-half/cloudlibc/src/libc/dirent/rewinddir.c - libc-bottom-half/cloudlibc/src/libc/dirent/fdopendir.c - libc-bottom-half/cloudlibc/src/libc/dirent/fdclosedir.c - libc-bottom-half/cloudlibc/src/libc/dirent/telldir.c - libc-bottom-half/cloudlibc/src/libc/dirent/seekdir.c - libc-bottom-half/cloudlibc/src/libc/poll/poll.c - libc-bottom-half/cloudlibc/src/libc/stdio/renameat.c - libc-bottom-half/libpreopen/libpreopen.c - libc-bottom-half/sources/getentropy.c - libc-bottom-half/sources/__environ.c - libc-bottom-half/sources/__wasilibc_rmdirat.c - libc-bottom-half/sources/errno.c - libc-bottom-half/sources/__wasilibc_tell.c - libc-bottom-half/sources/pause.c - libc-bottom-half/sources/sbrk.c - libc-bottom-half/sources/isatty.c - $<$>:libc-bottom-half/sources/string.c> - libc-bottom-half/sources/__wasilibc_fd_renumber.c - libc-bottom-half/sources/__wasilibc_unlinkat.c - libc-bottom-half/sources/__original_main.c - libc-bottom-half/sources/truncate.c) - target_include_directories(libc-bottom-half PRIVATE SYSTEM - libc-bottom-half/headers/private - libc-bottom-half/cloudlibc/src/include - libc-bottom-half/cloudlibc/src) - add_dependencies(libc-bottom-half sysroot) +add_library(dlmalloc OBJECT + dlmalloc/src/dlmalloc.c) +target_include_directories(dlmalloc PRIVATE + dlmalloc/include) +add_dependencies(dlmalloc sysroot-headers) - target_link_libraries(c PRIVATE - libc-bottom-half) -endif() -if(BUILD_LIBC_TOP_HALF) - add_library(libc-top-half OBJECT - libc-top-half/musl/src/misc/a64l.c - libc-top-half/musl/src/misc/basename.c - libc-top-half/musl/src/misc/dirname.c - libc-top-half/musl/src/misc/ffs.c - libc-top-half/musl/src/misc/ffsl.c - libc-top-half/musl/src/misc/ffsll.c - libc-top-half/musl/src/misc/fmtmsg.c - libc-top-half/musl/src/misc/getdomainname.c - libc-top-half/musl/src/misc/gethostid.c - libc-top-half/musl/src/misc/getopt.c - libc-top-half/musl/src/misc/getopt_long.c - libc-top-half/musl/src/misc/getsubopt.c - libc-top-half/musl/src/misc/uname.c - libc-top-half/musl/src/misc/nftw.c - libc-top-half/musl/src/errno/strerror.c - libc-top-half/musl/src/network/htonl.c - libc-top-half/musl/src/network/htons.c - libc-top-half/musl/src/network/ntohl.c - libc-top-half/musl/src/network/ntohs.c - libc-top-half/musl/src/network/inet_ntop.c - libc-top-half/musl/src/network/inet_pton.c - libc-top-half/musl/src/network/inet_aton.c - libc-top-half/musl/src/network/in6addr_any.c - libc-top-half/musl/src/network/in6addr_loopback.c - libc-top-half/musl/src/fenv/fenv.c - libc-top-half/musl/src/fenv/fesetround.c - libc-top-half/musl/src/fenv/feupdateenv.c - libc-top-half/musl/src/fenv/fesetexceptflag.c - libc-top-half/musl/src/fenv/fegetexceptflag.c - libc-top-half/musl/src/fenv/feholdexcept.c - libc-top-half/musl/src/exit/exit.c - libc-top-half/musl/src/exit/atexit.c - libc-top-half/musl/src/exit/assert.c - libc-top-half/musl/src/exit/quick_exit.c - libc-top-half/musl/src/exit/at_quick_exit.c - libc-top-half/musl/src/time/strftime.c - libc-top-half/musl/src/time/asctime.c - libc-top-half/musl/src/time/asctime_r.c - libc-top-half/musl/src/time/ctime.c - libc-top-half/musl/src/time/ctime_r.c - libc-top-half/musl/src/time/wcsftime.c - libc-top-half/musl/src/time/strptime.c - libc-top-half/musl/src/time/difftime.c - libc-top-half/musl/src/time/timegm.c - libc-top-half/musl/src/time/ftime.c - libc-top-half/musl/src/time/gmtime.c - libc-top-half/musl/src/time/gmtime_r.c - libc-top-half/musl/src/time/timespec_get.c - libc-top-half/musl/src/time/getdate.c - libc-top-half/musl/src/time/localtime.c - libc-top-half/musl/src/time/localtime_r.c - libc-top-half/musl/src/time/mktime.c - libc-top-half/musl/src/time/__tm_to_secs.c - libc-top-half/musl/src/time/__month_to_secs.c - libc-top-half/musl/src/time/__secs_to_tm.c - libc-top-half/musl/src/time/__year_to_secs.c - libc-top-half/musl/src/time/__tz.c - libc-top-half/musl/src/fcntl/creat.c - libc-top-half/musl/src/dirent/alphasort.c - libc-top-half/musl/src/dirent/versionsort.c - libc-top-half/musl/src/env/clearenv.c - libc-top-half/musl/src/env/getenv.c - libc-top-half/musl/src/env/putenv.c - libc-top-half/musl/src/env/setenv.c - libc-top-half/musl/src/env/unsetenv.c - libc-top-half/musl/src/unistd/posix_close.c - libc-top-half/musl/src/internal/defsysinfo.c - libc-top-half/musl/src/internal/floatscan.c - libc-top-half/musl/src/internal/intscan.c - libc-top-half/musl/src/internal/libc.c - libc-top-half/musl/src/internal/shgetc.c - libc-top-half/musl/src/stdio/asprintf.c - libc-top-half/musl/src/stdio/clearerr.c - libc-top-half/musl/src/stdio/dprintf.c - libc-top-half/musl/src/stdio/ext2.c - libc-top-half/musl/src/stdio/ext.c - libc-top-half/musl/src/stdio/fclose.c - libc-top-half/musl/src/stdio/__fclose_ca.c - libc-top-half/musl/src/stdio/__fdopen.c - libc-top-half/musl/src/stdio/feof.c - libc-top-half/musl/src/stdio/ferror.c - libc-top-half/musl/src/stdio/fflush.c - libc-top-half/musl/src/stdio/fgetc.c - libc-top-half/musl/src/stdio/fgetln.c - libc-top-half/musl/src/stdio/fgetpos.c - libc-top-half/musl/src/stdio/fgets.c - libc-top-half/musl/src/stdio/fgetwc.c - libc-top-half/musl/src/stdio/fgetws.c - libc-top-half/musl/src/stdio/fileno.c - libc-top-half/musl/src/stdio/fmemopen.c - libc-top-half/musl/src/stdio/__fmodeflags.c - libc-top-half/musl/src/stdio/fopen.c - libc-top-half/musl/src/stdio/fopencookie.c - libc-top-half/musl/src/stdio/__fopen_rb_ca.c - libc-top-half/musl/src/stdio/fprintf.c - libc-top-half/musl/src/stdio/fputc.c - libc-top-half/musl/src/stdio/fputs.c - libc-top-half/musl/src/stdio/fputwc.c - libc-top-half/musl/src/stdio/fputws.c - libc-top-half/musl/src/stdio/fread.c - libc-top-half/musl/src/stdio/freopen.c - libc-top-half/musl/src/stdio/fscanf.c - libc-top-half/musl/src/stdio/fseek.c - libc-top-half/musl/src/stdio/fsetpos.c - libc-top-half/musl/src/stdio/ftell.c - libc-top-half/musl/src/stdio/fwide.c - libc-top-half/musl/src/stdio/fwprintf.c - libc-top-half/musl/src/stdio/fwrite.c - libc-top-half/musl/src/stdio/fwscanf.c - libc-top-half/musl/src/stdio/getc.c - libc-top-half/musl/src/stdio/getchar.c - libc-top-half/musl/src/stdio/getchar_unlocked.c - libc-top-half/musl/src/stdio/getc_unlocked.c - libc-top-half/musl/src/stdio/getdelim.c - libc-top-half/musl/src/stdio/getline.c - libc-top-half/musl/src/stdio/getw.c - libc-top-half/musl/src/stdio/getwc.c - libc-top-half/musl/src/stdio/getwchar.c - libc-top-half/musl/src/stdio/ofl_add.c - libc-top-half/musl/src/stdio/ofl.c - libc-top-half/musl/src/stdio/open_memstream.c - libc-top-half/musl/src/stdio/open_wmemstream.c - libc-top-half/musl/src/stdio/__overflow.c - libc-top-half/musl/src/stdio/perror.c - libc-top-half/musl/src/stdio/printf.c - libc-top-half/musl/src/stdio/putc.c - libc-top-half/musl/src/stdio/putchar.c - libc-top-half/musl/src/stdio/putchar_unlocked.c - libc-top-half/musl/src/stdio/putc_unlocked.c - libc-top-half/musl/src/stdio/puts.c - libc-top-half/musl/src/stdio/putw.c - libc-top-half/musl/src/stdio/putwc.c - libc-top-half/musl/src/stdio/putwchar.c - libc-top-half/musl/src/stdio/rewind.c - libc-top-half/musl/src/stdio/scanf.c - libc-top-half/musl/src/stdio/setbuf.c - libc-top-half/musl/src/stdio/setbuffer.c - libc-top-half/musl/src/stdio/setlinebuf.c - libc-top-half/musl/src/stdio/setvbuf.c - libc-top-half/musl/src/stdio/snprintf.c - libc-top-half/musl/src/stdio/sprintf.c - libc-top-half/musl/src/stdio/sscanf.c - libc-top-half/musl/src/stdio/stderr.c - libc-top-half/musl/src/stdio/stdin.c - libc-top-half/musl/src/stdio/__stdio_close.c - libc-top-half/musl/src/stdio/__stdio_exit.c - libc-top-half/musl/src/stdio/__stdio_read.c - libc-top-half/musl/src/stdio/__stdio_seek.c - libc-top-half/musl/src/stdio/__stdio_write.c - libc-top-half/musl/src/stdio/stdout.c - libc-top-half/musl/src/stdio/__stdout_write.c - libc-top-half/musl/src/stdio/__string_read.c - libc-top-half/musl/src/stdio/swprintf.c - libc-top-half/musl/src/stdio/swscanf.c - libc-top-half/musl/src/stdio/__toread.c - libc-top-half/musl/src/stdio/__towrite.c - libc-top-half/musl/src/stdio/__uflow.c - libc-top-half/musl/src/stdio/ungetc.c - libc-top-half/musl/src/stdio/ungetwc.c - libc-top-half/musl/src/stdio/vasprintf.c - libc-top-half/musl/src/stdio/vdprintf.c - libc-top-half/musl/src/stdio/vfprintf.c - libc-top-half/musl/src/stdio/vfscanf.c - libc-top-half/musl/src/stdio/vfwprintf.c - libc-top-half/musl/src/stdio/vfwscanf.c - libc-top-half/musl/src/stdio/vprintf.c - libc-top-half/musl/src/stdio/vscanf.c - libc-top-half/musl/src/stdio/vsnprintf.c - libc-top-half/musl/src/stdio/vsprintf.c - libc-top-half/musl/src/stdio/vsscanf.c - libc-top-half/musl/src/stdio/vswprintf.c - libc-top-half/musl/src/stdio/vswscanf.c - libc-top-half/musl/src/stdio/vwprintf.c - libc-top-half/musl/src/stdio/vwscanf.c - libc-top-half/musl/src/stdio/wprintf.c - libc-top-half/musl/src/stdio/wscanf.c - libc-top-half/musl/src/string/bcmp.c - libc-top-half/musl/src/string/bcopy.c - libc-top-half/musl/src/string/bzero.c - libc-top-half/musl/src/string/explicit_bzero.c - libc-top-half/musl/src/string/index.c - libc-top-half/musl/src/string/memccpy.c - libc-top-half/musl/src/string/memchr.c - libc-top-half/musl/src/string/memcmp.c - libc-top-half/musl/src/string/memcpy.c - libc-top-half/musl/src/string/memmem.c - libc-top-half/musl/src/string/memmove.c - libc-top-half/musl/src/string/mempcpy.c - libc-top-half/musl/src/string/memrchr.c - libc-top-half/musl/src/string/memset.c - libc-top-half/musl/src/string/rindex.c - libc-top-half/musl/src/string/stpcpy.c - libc-top-half/musl/src/string/stpncpy.c - libc-top-half/musl/src/string/strcasecmp.c - libc-top-half/musl/src/string/strcasestr.c - libc-top-half/musl/src/string/strcat.c - libc-top-half/musl/src/string/strchr.c - libc-top-half/musl/src/string/strchrnul.c - libc-top-half/musl/src/string/strcmp.c - libc-top-half/musl/src/string/strcpy.c - libc-top-half/musl/src/string/strcspn.c - libc-top-half/musl/src/string/strdup.c - libc-top-half/musl/src/string/strerror_r.c - libc-top-half/musl/src/string/strlcat.c - libc-top-half/musl/src/string/strlcpy.c - libc-top-half/musl/src/string/strlen.c - libc-top-half/musl/src/string/strncasecmp.c - libc-top-half/musl/src/string/strncat.c - libc-top-half/musl/src/string/strncmp.c - libc-top-half/musl/src/string/strncpy.c - libc-top-half/musl/src/string/strndup.c - libc-top-half/musl/src/string/strnlen.c - libc-top-half/musl/src/string/strpbrk.c - libc-top-half/musl/src/string/strrchr.c - libc-top-half/musl/src/string/strsep.c - libc-top-half/musl/src/string/strspn.c - libc-top-half/musl/src/string/strstr.c - libc-top-half/musl/src/string/strtok.c - libc-top-half/musl/src/string/strtok_r.c - libc-top-half/musl/src/string/strverscmp.c - libc-top-half/musl/src/string/swab.c - libc-top-half/musl/src/string/wcpcpy.c - libc-top-half/musl/src/string/wcpncpy.c - libc-top-half/musl/src/string/wcscasecmp.c - libc-top-half/musl/src/string/wcscasecmp_l.c - libc-top-half/musl/src/string/wcscat.c - libc-top-half/musl/src/string/wcschr.c - libc-top-half/musl/src/string/wcscmp.c - libc-top-half/musl/src/string/wcscpy.c - libc-top-half/musl/src/string/wcscspn.c - libc-top-half/musl/src/string/wcsdup.c - libc-top-half/musl/src/string/wcslen.c - libc-top-half/musl/src/string/wcsncasecmp.c - libc-top-half/musl/src/string/wcsncasecmp_l.c - libc-top-half/musl/src/string/wcsncat.c - libc-top-half/musl/src/string/wcsncmp.c - libc-top-half/musl/src/string/wcsncpy.c - libc-top-half/musl/src/string/wcsnlen.c - libc-top-half/musl/src/string/wcspbrk.c - libc-top-half/musl/src/string/wcsrchr.c - libc-top-half/musl/src/string/wcsspn.c - libc-top-half/musl/src/string/wcsstr.c - libc-top-half/musl/src/string/wcstok.c - libc-top-half/musl/src/string/wcswcs.c - libc-top-half/musl/src/string/wmemchr.c - libc-top-half/musl/src/string/wmemcmp.c - libc-top-half/musl/src/string/wmemcpy.c - libc-top-half/musl/src/string/wmemmove.c - libc-top-half/musl/src/string/wmemset.c - libc-top-half/musl/src/locale/catclose.c - libc-top-half/musl/src/locale/catgets.c - libc-top-half/musl/src/locale/catopen.c - libc-top-half/musl/src/locale/c_locale.c - libc-top-half/musl/src/locale/duplocale.c - libc-top-half/musl/src/locale/freelocale.c - libc-top-half/musl/src/locale/iconv.c - libc-top-half/musl/src/locale/iconv_close.c - libc-top-half/musl/src/locale/langinfo.c - libc-top-half/musl/src/locale/__lctrans.c - libc-top-half/musl/src/locale/localeconv.c - libc-top-half/musl/src/locale/locale_map.c - libc-top-half/musl/src/locale/__mo_lookup.c - libc-top-half/musl/src/locale/newlocale.c - libc-top-half/musl/src/locale/pleval.c - libc-top-half/musl/src/locale/setlocale.c - libc-top-half/musl/src/locale/strcoll.c - libc-top-half/musl/src/locale/strfmon.c - libc-top-half/musl/src/locale/strxfrm.c - libc-top-half/musl/src/locale/uselocale.c - libc-top-half/musl/src/locale/wcscoll.c - libc-top-half/musl/src/locale/wcsxfrm.c - libc-top-half/musl/src/stdlib/abs.c - libc-top-half/musl/src/stdlib/atof.c - libc-top-half/musl/src/stdlib/atoi.c - libc-top-half/musl/src/stdlib/atol.c - libc-top-half/musl/src/stdlib/atoll.c - libc-top-half/musl/src/stdlib/bsearch.c - libc-top-half/musl/src/stdlib/div.c - libc-top-half/musl/src/stdlib/ecvt.c - libc-top-half/musl/src/stdlib/fcvt.c - libc-top-half/musl/src/stdlib/gcvt.c - libc-top-half/musl/src/stdlib/imaxabs.c - libc-top-half/musl/src/stdlib/imaxdiv.c - libc-top-half/musl/src/stdlib/labs.c - libc-top-half/musl/src/stdlib/ldiv.c - libc-top-half/musl/src/stdlib/llabs.c - libc-top-half/musl/src/stdlib/lldiv.c - libc-top-half/musl/src/stdlib/qsort.c - libc-top-half/musl/src/stdlib/strtod.c - libc-top-half/musl/src/stdlib/strtol.c - libc-top-half/musl/src/stdlib/wcstod.c - libc-top-half/musl/src/stdlib/wcstol.c - libc-top-half/musl/src/search/hsearch.c - libc-top-half/musl/src/search/insque.c - libc-top-half/musl/src/search/lsearch.c - libc-top-half/musl/src/search/tdelete.c - libc-top-half/musl/src/search/tdestroy.c - libc-top-half/musl/src/search/tfind.c - libc-top-half/musl/src/search/tsearch.c - libc-top-half/musl/src/search/twalk.c - libc-top-half/musl/src/multibyte/btowc.c - libc-top-half/musl/src/multibyte/c16rtomb.c - libc-top-half/musl/src/multibyte/c32rtomb.c - libc-top-half/musl/src/multibyte/internal.c - libc-top-half/musl/src/multibyte/mblen.c - libc-top-half/musl/src/multibyte/mbrlen.c - libc-top-half/musl/src/multibyte/mbrtoc16.c - libc-top-half/musl/src/multibyte/mbrtoc32.c - libc-top-half/musl/src/multibyte/mbrtowc.c - libc-top-half/musl/src/multibyte/mbsinit.c - libc-top-half/musl/src/multibyte/mbsnrtowcs.c - libc-top-half/musl/src/multibyte/mbsrtowcs.c - libc-top-half/musl/src/multibyte/mbstowcs.c - libc-top-half/musl/src/multibyte/mbtowc.c - libc-top-half/musl/src/multibyte/wcrtomb.c - libc-top-half/musl/src/multibyte/wcsnrtombs.c - libc-top-half/musl/src/multibyte/wcsrtombs.c - libc-top-half/musl/src/multibyte/wcstombs.c - libc-top-half/musl/src/multibyte/wctob.c - libc-top-half/musl/src/multibyte/wctomb.c - libc-top-half/musl/src/regex/fnmatch.c - libc-top-half/musl/src/regex/glob.c - libc-top-half/musl/src/regex/regcomp.c - libc-top-half/musl/src/regex/regerror.c - libc-top-half/musl/src/regex/regexec.c - libc-top-half/musl/src/regex/tre-mem.c - libc-top-half/musl/src/prng/drand48.c - libc-top-half/musl/src/prng/lcong48.c - libc-top-half/musl/src/prng/lrand48.c - libc-top-half/musl/src/prng/mrand48.c - libc-top-half/musl/src/prng/__rand48_step.c - libc-top-half/musl/src/prng/rand.c - libc-top-half/musl/src/prng/random.c - libc-top-half/musl/src/prng/rand_r.c - libc-top-half/musl/src/prng/__seed48.c - libc-top-half/musl/src/prng/seed48.c - libc-top-half/musl/src/prng/srand48.c - libc-top-half/musl/src/conf/confstr.c - libc-top-half/musl/src/conf/fpathconf.c - libc-top-half/musl/src/conf/legacy.c - libc-top-half/musl/src/conf/pathconf.c - libc-top-half/musl/src/conf/sysconf.c - libc-top-half/musl/src/ctype/__ctype_b_loc.c - libc-top-half/musl/src/ctype/__ctype_get_mb_cur_max.c - libc-top-half/musl/src/ctype/__ctype_tolower_loc.c - libc-top-half/musl/src/ctype/__ctype_toupper_loc.c - libc-top-half/musl/src/ctype/isalnum.c - libc-top-half/musl/src/ctype/isalpha.c - libc-top-half/musl/src/ctype/isascii.c - libc-top-half/musl/src/ctype/isblank.c - libc-top-half/musl/src/ctype/iscntrl.c - libc-top-half/musl/src/ctype/isdigit.c - libc-top-half/musl/src/ctype/isgraph.c - libc-top-half/musl/src/ctype/islower.c - libc-top-half/musl/src/ctype/isprint.c - libc-top-half/musl/src/ctype/ispunct.c - libc-top-half/musl/src/ctype/isspace.c - libc-top-half/musl/src/ctype/isupper.c - libc-top-half/musl/src/ctype/iswalnum.c - libc-top-half/musl/src/ctype/iswalpha.c - libc-top-half/musl/src/ctype/iswblank.c - libc-top-half/musl/src/ctype/iswcntrl.c - libc-top-half/musl/src/ctype/iswctype.c - libc-top-half/musl/src/ctype/iswdigit.c - libc-top-half/musl/src/ctype/iswgraph.c - libc-top-half/musl/src/ctype/iswlower.c - libc-top-half/musl/src/ctype/iswprint.c - libc-top-half/musl/src/ctype/iswpunct.c - libc-top-half/musl/src/ctype/iswspace.c - libc-top-half/musl/src/ctype/iswupper.c - libc-top-half/musl/src/ctype/iswxdigit.c - libc-top-half/musl/src/ctype/isxdigit.c - libc-top-half/musl/src/ctype/toascii.c - libc-top-half/musl/src/ctype/tolower.c - libc-top-half/musl/src/ctype/toupper.c - libc-top-half/musl/src/ctype/towctrans.c - libc-top-half/musl/src/ctype/wcswidth.c - libc-top-half/musl/src/ctype/wctrans.c - libc-top-half/musl/src/ctype/wcwidth.c - libc-top-half/musl/src/math/acos.c - libc-top-half/musl/src/math/acosf.c - libc-top-half/musl/src/math/acosh.c - libc-top-half/musl/src/math/acoshf.c - libc-top-half/musl/src/math/acoshl.c - libc-top-half/musl/src/math/acosl.c - libc-top-half/musl/src/math/asin.c - libc-top-half/musl/src/math/asinf.c - libc-top-half/musl/src/math/asinh.c - libc-top-half/musl/src/math/asinhf.c - libc-top-half/musl/src/math/asinhl.c - libc-top-half/musl/src/math/asinl.c - libc-top-half/musl/src/math/atan2.c - libc-top-half/musl/src/math/atan2f.c - libc-top-half/musl/src/math/atan2l.c - libc-top-half/musl/src/math/atan.c - libc-top-half/musl/src/math/atanf.c - libc-top-half/musl/src/math/atanh.c - libc-top-half/musl/src/math/atanhf.c - libc-top-half/musl/src/math/atanhl.c - libc-top-half/musl/src/math/atanl.c - libc-top-half/musl/src/math/cbrt.c - libc-top-half/musl/src/math/cbrtf.c - libc-top-half/musl/src/math/cbrtl.c - libc-top-half/musl/src/math/ceill.c - libc-top-half/musl/src/math/copysignl.c - libc-top-half/musl/src/math/__cos.c - libc-top-half/musl/src/math/cos.c - libc-top-half/musl/src/math/__cosdf.c - libc-top-half/musl/src/math/cosf.c - libc-top-half/musl/src/math/cosh.c - libc-top-half/musl/src/math/coshf.c - libc-top-half/musl/src/math/coshl.c - libc-top-half/musl/src/math/__cosl.c - libc-top-half/musl/src/math/cosl.c - libc-top-half/musl/src/math/erf.c - libc-top-half/musl/src/math/erff.c - libc-top-half/musl/src/math/erfl.c - libc-top-half/musl/src/math/exp10.c - libc-top-half/musl/src/math/exp10f.c - libc-top-half/musl/src/math/exp10l.c - libc-top-half/musl/src/math/exp2.c - libc-top-half/musl/src/math/exp2f.c - libc-top-half/musl/src/math/exp2f_data.c - libc-top-half/musl/src/math/exp2l.c - libc-top-half/musl/src/math/exp.c - libc-top-half/musl/src/math/exp_data.c - libc-top-half/musl/src/math/expf.c - libc-top-half/musl/src/math/expl.c - libc-top-half/musl/src/math/expm1.c - libc-top-half/musl/src/math/expm1f.c - libc-top-half/musl/src/math/expm1l.c - libc-top-half/musl/src/math/__expo2.c - libc-top-half/musl/src/math/__expo2f.c - libc-top-half/musl/src/math/fabsl.c - libc-top-half/musl/src/math/fdim.c - libc-top-half/musl/src/math/fdimf.c - libc-top-half/musl/src/math/fdiml.c - libc-top-half/musl/src/math/finite.c - libc-top-half/musl/src/math/finitef.c - libc-top-half/musl/src/math/floorl.c - libc-top-half/musl/src/math/fma.c - libc-top-half/musl/src/math/fmaf.c - libc-top-half/musl/src/math/fmal.c - libc-top-half/musl/src/math/fmaxl.c - libc-top-half/musl/src/math/fminl.c - libc-top-half/musl/src/math/fmod.c - libc-top-half/musl/src/math/fmodf.c - libc-top-half/musl/src/math/fmodl.c - libc-top-half/musl/src/math/frexp.c - libc-top-half/musl/src/math/frexpf.c - libc-top-half/musl/src/math/frexpl.c - libc-top-half/musl/src/math/hypot.c - libc-top-half/musl/src/math/hypotf.c - libc-top-half/musl/src/math/hypotl.c - libc-top-half/musl/src/math/ilogb.c - libc-top-half/musl/src/math/ilogbf.c - libc-top-half/musl/src/math/ilogbl.c - libc-top-half/musl/src/math/__invtrigl.c - libc-top-half/musl/src/math/j0.c - libc-top-half/musl/src/math/j0f.c - libc-top-half/musl/src/math/j1.c - libc-top-half/musl/src/math/j1f.c - libc-top-half/musl/src/math/jn.c - libc-top-half/musl/src/math/jnf.c - libc-top-half/musl/src/math/ldexp.c - libc-top-half/musl/src/math/ldexpf.c - libc-top-half/musl/src/math/ldexpl.c - libc-top-half/musl/src/math/lgamma.c - libc-top-half/musl/src/math/lgammaf.c - libc-top-half/musl/src/math/lgammaf_r.c - libc-top-half/musl/src/math/lgammal.c - libc-top-half/musl/src/math/lgamma_r.c - libc-top-half/musl/src/math/llrint.c - libc-top-half/musl/src/math/llrintf.c - libc-top-half/musl/src/math/llrintl.c - libc-top-half/musl/src/math/llround.c - libc-top-half/musl/src/math/llroundf.c - libc-top-half/musl/src/math/llroundl.c - libc-top-half/musl/src/math/log10.c - libc-top-half/musl/src/math/log10f.c - libc-top-half/musl/src/math/log10l.c - libc-top-half/musl/src/math/log1p.c - libc-top-half/musl/src/math/log1pf.c - libc-top-half/musl/src/math/log1pl.c - libc-top-half/musl/src/math/log2.c - libc-top-half/musl/src/math/log2_data.c - libc-top-half/musl/src/math/log2f.c - libc-top-half/musl/src/math/log2f_data.c - libc-top-half/musl/src/math/log2l.c - libc-top-half/musl/src/math/logb.c - libc-top-half/musl/src/math/logbf.c - libc-top-half/musl/src/math/logbl.c - libc-top-half/musl/src/math/log.c - libc-top-half/musl/src/math/log_data.c - libc-top-half/musl/src/math/logf.c - libc-top-half/musl/src/math/logf_data.c - libc-top-half/musl/src/math/logl.c - libc-top-half/musl/src/math/lrint.c - libc-top-half/musl/src/math/lrintf.c - libc-top-half/musl/src/math/lrintl.c - libc-top-half/musl/src/math/lround.c - libc-top-half/musl/src/math/lroundf.c - libc-top-half/musl/src/math/lroundl.c - libc-top-half/musl/src/math/__math_divzero.c - libc-top-half/musl/src/math/__math_divzerof.c - libc-top-half/musl/src/math/__math_invalid.c - libc-top-half/musl/src/math/__math_invalidf.c - libc-top-half/musl/src/math/__math_oflow.c - libc-top-half/musl/src/math/__math_oflowf.c - libc-top-half/musl/src/math/__math_uflow.c - libc-top-half/musl/src/math/__math_uflowf.c - libc-top-half/musl/src/math/__math_xflow.c - libc-top-half/musl/src/math/__math_xflowf.c - libc-top-half/musl/src/math/modf.c - libc-top-half/musl/src/math/modff.c - libc-top-half/musl/src/math/modfl.c - libc-top-half/musl/src/math/nan.c - libc-top-half/musl/src/math/nanf.c - libc-top-half/musl/src/math/nanl.c - libc-top-half/musl/src/math/nearbyintl.c - libc-top-half/musl/src/math/nextafter.c - libc-top-half/musl/src/math/nextafterf.c - libc-top-half/musl/src/math/nextafterl.c - libc-top-half/musl/src/math/nexttoward.c - libc-top-half/musl/src/math/nexttowardf.c - libc-top-half/musl/src/math/nexttowardl.c - libc-top-half/musl/src/math/__polevll.c - libc-top-half/musl/src/math/pow.c - libc-top-half/musl/src/math/pow_data.c - libc-top-half/musl/src/math/powf.c - libc-top-half/musl/src/math/powf_data.c - libc-top-half/musl/src/math/powl.c - libc-top-half/musl/src/math/remainder.c - libc-top-half/musl/src/math/remainderf.c - libc-top-half/musl/src/math/remainderl.c - libc-top-half/musl/src/math/__rem_pio2.c - libc-top-half/musl/src/math/__rem_pio2f.c - libc-top-half/musl/src/math/__rem_pio2_large.c - libc-top-half/musl/src/math/__rem_pio2l.c - libc-top-half/musl/src/math/remquo.c - libc-top-half/musl/src/math/remquof.c - libc-top-half/musl/src/math/remquol.c - libc-top-half/musl/src/math/rintl.c - libc-top-half/musl/src/math/round.c - libc-top-half/musl/src/math/roundf.c - libc-top-half/musl/src/math/roundl.c - libc-top-half/musl/src/math/scalb.c - libc-top-half/musl/src/math/scalbf.c - libc-top-half/musl/src/math/scalbln.c - libc-top-half/musl/src/math/scalblnf.c - libc-top-half/musl/src/math/scalblnl.c - libc-top-half/musl/src/math/scalbn.c - libc-top-half/musl/src/math/scalbnf.c - libc-top-half/musl/src/math/scalbnl.c - libc-top-half/musl/src/math/signgam.c - libc-top-half/musl/src/math/significand.c - libc-top-half/musl/src/math/significandf.c - libc-top-half/musl/src/math/__sin.c - libc-top-half/musl/src/math/sin.c - libc-top-half/musl/src/math/sincos.c - libc-top-half/musl/src/math/sincosf.c - libc-top-half/musl/src/math/sincosl.c - libc-top-half/musl/src/math/__sindf.c - libc-top-half/musl/src/math/sinf.c - libc-top-half/musl/src/math/sinh.c - libc-top-half/musl/src/math/sinhf.c - libc-top-half/musl/src/math/sinhl.c - libc-top-half/musl/src/math/__sinl.c - libc-top-half/musl/src/math/sinl.c - libc-top-half/musl/src/math/sqrtl.c - libc-top-half/musl/src/math/__tan.c - libc-top-half/musl/src/math/tan.c - libc-top-half/musl/src/math/__tandf.c - libc-top-half/musl/src/math/tanf.c - libc-top-half/musl/src/math/tanh.c - libc-top-half/musl/src/math/tanhf.c - libc-top-half/musl/src/math/tanhl.c - libc-top-half/musl/src/math/__tanl.c - libc-top-half/musl/src/math/tanl.c - libc-top-half/musl/src/math/tgamma.c - libc-top-half/musl/src/math/tgammaf.c - libc-top-half/musl/src/math/tgammal.c - libc-top-half/musl/src/math/truncl.c - libc-top-half/musl/src/complex/cabs.c - libc-top-half/musl/src/complex/cabsf.c - libc-top-half/musl/src/complex/cabsl.c - libc-top-half/musl/src/complex/cacos.c - libc-top-half/musl/src/complex/cacosf.c - libc-top-half/musl/src/complex/cacosh.c - libc-top-half/musl/src/complex/cacoshf.c - libc-top-half/musl/src/complex/cacoshl.c - libc-top-half/musl/src/complex/cacosl.c - libc-top-half/musl/src/complex/carg.c - libc-top-half/musl/src/complex/cargf.c - libc-top-half/musl/src/complex/cargl.c - libc-top-half/musl/src/complex/casin.c - libc-top-half/musl/src/complex/casinf.c - libc-top-half/musl/src/complex/casinh.c - libc-top-half/musl/src/complex/casinhf.c - libc-top-half/musl/src/complex/casinhl.c - libc-top-half/musl/src/complex/casinl.c - libc-top-half/musl/src/complex/catan.c - libc-top-half/musl/src/complex/catanf.c - libc-top-half/musl/src/complex/catanh.c - libc-top-half/musl/src/complex/catanhf.c - libc-top-half/musl/src/complex/catanhl.c - libc-top-half/musl/src/complex/catanl.c - libc-top-half/musl/src/complex/ccos.c - libc-top-half/musl/src/complex/ccosf.c - libc-top-half/musl/src/complex/ccosh.c - libc-top-half/musl/src/complex/ccoshf.c - libc-top-half/musl/src/complex/ccoshl.c - libc-top-half/musl/src/complex/ccosl.c - libc-top-half/musl/src/complex/__cexp.c - libc-top-half/musl/src/complex/cexp.c - libc-top-half/musl/src/complex/__cexpf.c - libc-top-half/musl/src/complex/cexpf.c - libc-top-half/musl/src/complex/cexpl.c - libc-top-half/musl/src/complex/cimagl.c - libc-top-half/musl/src/complex/clog.c - libc-top-half/musl/src/complex/clogf.c - libc-top-half/musl/src/complex/clogl.c - libc-top-half/musl/src/complex/conj.c - libc-top-half/musl/src/complex/conjf.c - libc-top-half/musl/src/complex/conjl.c - libc-top-half/musl/src/complex/cpow.c - libc-top-half/musl/src/complex/cpowf.c - libc-top-half/musl/src/complex/cpowl.c - libc-top-half/musl/src/complex/cproj.c - libc-top-half/musl/src/complex/cprojf.c - libc-top-half/musl/src/complex/cprojl.c - libc-top-half/musl/src/complex/creall.c - libc-top-half/musl/src/complex/csin.c - libc-top-half/musl/src/complex/csinf.c - libc-top-half/musl/src/complex/csinh.c - libc-top-half/musl/src/complex/csinhf.c - libc-top-half/musl/src/complex/csinhl.c - libc-top-half/musl/src/complex/csinl.c - libc-top-half/musl/src/complex/csqrt.c - libc-top-half/musl/src/complex/csqrtf.c - libc-top-half/musl/src/complex/csqrtl.c - libc-top-half/musl/src/complex/ctan.c - libc-top-half/musl/src/complex/ctanf.c - libc-top-half/musl/src/complex/ctanh.c - libc-top-half/musl/src/complex/ctanhf.c - libc-top-half/musl/src/complex/ctanhl.c - libc-top-half/musl/src/complex/ctanl.c - libc-top-half/musl/src/crypt/crypt_blowfish.c - libc-top-half/musl/src/crypt/crypt.c - libc-top-half/musl/src/crypt/crypt_des.c - libc-top-half/musl/src/crypt/crypt_md5.c - libc-top-half/musl/src/crypt/crypt_r.c - libc-top-half/musl/src/crypt/crypt_sha256.c - libc-top-half/musl/src/crypt/crypt_sha512.c - libc-top-half/musl/src/crypt/encrypt.c - libc-top-half/sources/arc4random.c) - target_include_directories(libc-top-half PRIVATE - libc-top-half/musl/src/include - libc-top-half/musl/src/internal - libc-top-half/musl/arch/wasm32 - libc-top-half/musl/arch/generic - libc-top-half/headers/private) - target_compile_options(libc-top-half PRIVATE - -Wno-parentheses - -Wno-shift-op-parentheses - -Wno-bitwise-op-parentheses - -Wno-logical-op-parentheses - -Wno-string-plus-int - -Wno-dangling-else - -Wno-unknown-pragmas) - add_dependencies(libc-top-half sysroot) +add_library(libc-bottom-half OBJECT + libc-bottom-half/cloudlibc/src/libc/stdlib/_Exit.c + libc-bottom-half/cloudlibc/src/libc/sched/sched_yield.c + libc-bottom-half/cloudlibc/src/libc/unistd/usleep.c + libc-bottom-half/cloudlibc/src/libc/unistd/pwrite.c + libc-bottom-half/cloudlibc/src/libc/unistd/ftruncate.c + libc-bottom-half/cloudlibc/src/libc/unistd/write.c + libc-bottom-half/cloudlibc/src/libc/unistd/symlinkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/unlinkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/close.c + libc-bottom-half/cloudlibc/src/libc/unistd/lseek.c + libc-bottom-half/cloudlibc/src/libc/unistd/faccessat.c + libc-bottom-half/cloudlibc/src/libc/unistd/fsync.c + libc-bottom-half/cloudlibc/src/libc/unistd/read.c + libc-bottom-half/cloudlibc/src/libc/unistd/linkat.c + libc-bottom-half/cloudlibc/src/libc/unistd/sleep.c + libc-bottom-half/cloudlibc/src/libc/unistd/pread.c + libc-bottom-half/cloudlibc/src/libc/unistd/fdatasync.c + libc-bottom-half/cloudlibc/src/libc/unistd/readlinkat.c + libc-bottom-half/cloudlibc/src/libc/sys/ioctl/ioctl.c + libc-bottom-half/cloudlibc/src/libc/sys/time/gettimeofday.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/shutdown.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/getsockopt.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/recv.c + libc-bottom-half/cloudlibc/src/libc/sys/socket/send.c + libc-bottom-half/cloudlibc/src/libc/sys/select/select.c + libc-bottom-half/cloudlibc/src/libc/sys/select/pselect.c + libc-bottom-half/cloudlibc/src/libc/sys/times/times.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/writev.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/preadv.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/readv.c + libc-bottom-half/cloudlibc/src/libc/sys/uio/pwritev.c + libc-bottom-half/cloudlibc/src/libc/sys/resource/getrusage.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/utimensat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/fstatat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/fstat.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/futimens.c + libc-bottom-half/cloudlibc/src/libc/sys/stat/mkdirat.c + libc-bottom-half/cloudlibc/src/libc/fcntl/fcntl.c + libc-bottom-half/cloudlibc/src/libc/fcntl/openat.c + libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fallocate.c + libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fadvise.c + libc-bottom-half/cloudlibc/src/libc/errno/errno.c + libc-bottom-half/cloudlibc/src/libc/time/clock.c + libc-bottom-half/cloudlibc/src/libc/time/clock_gettime.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_PROCESS_CPUTIME_ID.c + libc-bottom-half/cloudlibc/src/libc/time/clock_nanosleep.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_THREAD_CPUTIME_ID.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_REALTIME.c + libc-bottom-half/cloudlibc/src/libc/time/clock_getres.c + libc-bottom-half/cloudlibc/src/libc/time/time.c + libc-bottom-half/cloudlibc/src/libc/time/nanosleep.c + libc-bottom-half/cloudlibc/src/libc/time/CLOCK_MONOTONIC.c + libc-bottom-half/cloudlibc/src/libc/dirent/closedir.c + libc-bottom-half/cloudlibc/src/libc/dirent/dirfd.c + libc-bottom-half/cloudlibc/src/libc/dirent/opendirat.c + libc-bottom-half/cloudlibc/src/libc/dirent/scandirat.c + libc-bottom-half/cloudlibc/src/libc/dirent/readdir.c + libc-bottom-half/cloudlibc/src/libc/dirent/rewinddir.c + libc-bottom-half/cloudlibc/src/libc/dirent/fdopendir.c + libc-bottom-half/cloudlibc/src/libc/dirent/fdclosedir.c + libc-bottom-half/cloudlibc/src/libc/dirent/telldir.c + libc-bottom-half/cloudlibc/src/libc/dirent/seekdir.c + libc-bottom-half/cloudlibc/src/libc/poll/poll.c + libc-bottom-half/cloudlibc/src/libc/stdio/renameat.c + libc-bottom-half/libpreopen/libpreopen.c + libc-bottom-half/sources/getentropy.c + libc-bottom-half/sources/__environ.c + libc-bottom-half/sources/__wasilibc_rmdirat.c + libc-bottom-half/sources/errno.c + libc-bottom-half/sources/__wasilibc_tell.c + libc-bottom-half/sources/pause.c + libc-bottom-half/sources/sbrk.c + libc-bottom-half/sources/isatty.c + libc-bottom-half/sources/__wasilibc_fd_renumber.c + libc-bottom-half/sources/__wasilibc_unlinkat.c + libc-bottom-half/sources/__original_main.c + libc-bottom-half/sources/truncate.c) +target_include_directories(libc-bottom-half PRIVATE + libc-bottom-half/headers/private + libc-bottom-half/cloudlibc/src/include + libc-bottom-half/cloudlibc/src) +add_dependencies(libc-bottom-half sysroot-headers) - target_link_libraries(c PRIVATE - libc-top-half) -endif() +add_library(libc-top-half OBJECT + libc-top-half/musl/src/misc/a64l.c + libc-top-half/musl/src/misc/basename.c + libc-top-half/musl/src/misc/dirname.c + libc-top-half/musl/src/misc/ffs.c + libc-top-half/musl/src/misc/ffsl.c + libc-top-half/musl/src/misc/ffsll.c + libc-top-half/musl/src/misc/fmtmsg.c + libc-top-half/musl/src/misc/getdomainname.c + libc-top-half/musl/src/misc/gethostid.c + libc-top-half/musl/src/misc/getopt.c + libc-top-half/musl/src/misc/getopt_long.c + libc-top-half/musl/src/misc/getsubopt.c + libc-top-half/musl/src/misc/uname.c + libc-top-half/musl/src/misc/nftw.c + libc-top-half/musl/src/errno/strerror.c + libc-top-half/musl/src/network/htonl.c + libc-top-half/musl/src/network/htons.c + libc-top-half/musl/src/network/ntohl.c + libc-top-half/musl/src/network/ntohs.c + libc-top-half/musl/src/network/inet_ntop.c + libc-top-half/musl/src/network/inet_pton.c + libc-top-half/musl/src/network/inet_aton.c + libc-top-half/musl/src/network/in6addr_any.c + libc-top-half/musl/src/network/in6addr_loopback.c + libc-top-half/musl/src/fenv/fenv.c + libc-top-half/musl/src/fenv/fesetround.c + libc-top-half/musl/src/fenv/feupdateenv.c + libc-top-half/musl/src/fenv/fesetexceptflag.c + libc-top-half/musl/src/fenv/fegetexceptflag.c + libc-top-half/musl/src/fenv/feholdexcept.c + libc-top-half/musl/src/exit/exit.c + libc-top-half/musl/src/exit/atexit.c + libc-top-half/musl/src/exit/assert.c + libc-top-half/musl/src/exit/quick_exit.c + libc-top-half/musl/src/exit/at_quick_exit.c + libc-top-half/musl/src/time/strftime.c + libc-top-half/musl/src/time/asctime.c + libc-top-half/musl/src/time/asctime_r.c + libc-top-half/musl/src/time/ctime.c + libc-top-half/musl/src/time/ctime_r.c + libc-top-half/musl/src/time/wcsftime.c + libc-top-half/musl/src/time/strptime.c + libc-top-half/musl/src/time/difftime.c + libc-top-half/musl/src/time/timegm.c + libc-top-half/musl/src/time/ftime.c + libc-top-half/musl/src/time/gmtime.c + libc-top-half/musl/src/time/gmtime_r.c + libc-top-half/musl/src/time/timespec_get.c + libc-top-half/musl/src/time/getdate.c + libc-top-half/musl/src/time/localtime.c + libc-top-half/musl/src/time/localtime_r.c + libc-top-half/musl/src/time/mktime.c + libc-top-half/musl/src/time/__tm_to_secs.c + libc-top-half/musl/src/time/__month_to_secs.c + libc-top-half/musl/src/time/__secs_to_tm.c + libc-top-half/musl/src/time/__year_to_secs.c + libc-top-half/musl/src/time/__tz.c + libc-top-half/musl/src/fcntl/creat.c + libc-top-half/musl/src/dirent/alphasort.c + libc-top-half/musl/src/dirent/versionsort.c + libc-top-half/musl/src/env/clearenv.c + libc-top-half/musl/src/env/getenv.c + libc-top-half/musl/src/env/putenv.c + libc-top-half/musl/src/env/setenv.c + libc-top-half/musl/src/env/unsetenv.c + libc-top-half/musl/src/unistd/posix_close.c + libc-top-half/musl/src/internal/defsysinfo.c + libc-top-half/musl/src/internal/floatscan.c + libc-top-half/musl/src/internal/intscan.c + libc-top-half/musl/src/internal/libc.c + libc-top-half/musl/src/internal/shgetc.c + libc-top-half/musl/src/stdio/asprintf.c + libc-top-half/musl/src/stdio/clearerr.c + libc-top-half/musl/src/stdio/dprintf.c + libc-top-half/musl/src/stdio/ext2.c + libc-top-half/musl/src/stdio/ext.c + libc-top-half/musl/src/stdio/fclose.c + libc-top-half/musl/src/stdio/__fclose_ca.c + libc-top-half/musl/src/stdio/__fdopen.c + libc-top-half/musl/src/stdio/feof.c + libc-top-half/musl/src/stdio/ferror.c + libc-top-half/musl/src/stdio/fflush.c + libc-top-half/musl/src/stdio/fgetc.c + libc-top-half/musl/src/stdio/fgetln.c + libc-top-half/musl/src/stdio/fgetpos.c + libc-top-half/musl/src/stdio/fgets.c + libc-top-half/musl/src/stdio/fgetwc.c + libc-top-half/musl/src/stdio/fgetws.c + libc-top-half/musl/src/stdio/fileno.c + libc-top-half/musl/src/stdio/fmemopen.c + libc-top-half/musl/src/stdio/__fmodeflags.c + libc-top-half/musl/src/stdio/fopen.c + libc-top-half/musl/src/stdio/fopencookie.c + libc-top-half/musl/src/stdio/__fopen_rb_ca.c + libc-top-half/musl/src/stdio/fprintf.c + libc-top-half/musl/src/stdio/fputc.c + libc-top-half/musl/src/stdio/fputs.c + libc-top-half/musl/src/stdio/fputwc.c + libc-top-half/musl/src/stdio/fputws.c + libc-top-half/musl/src/stdio/fread.c + libc-top-half/musl/src/stdio/freopen.c + libc-top-half/musl/src/stdio/fscanf.c + libc-top-half/musl/src/stdio/fseek.c + libc-top-half/musl/src/stdio/fsetpos.c + libc-top-half/musl/src/stdio/ftell.c + libc-top-half/musl/src/stdio/fwide.c + libc-top-half/musl/src/stdio/fwprintf.c + libc-top-half/musl/src/stdio/fwrite.c + libc-top-half/musl/src/stdio/fwscanf.c + libc-top-half/musl/src/stdio/getc.c + libc-top-half/musl/src/stdio/getchar.c + libc-top-half/musl/src/stdio/getchar_unlocked.c + libc-top-half/musl/src/stdio/getc_unlocked.c + libc-top-half/musl/src/stdio/getdelim.c + libc-top-half/musl/src/stdio/getline.c + libc-top-half/musl/src/stdio/getw.c + libc-top-half/musl/src/stdio/getwc.c + libc-top-half/musl/src/stdio/getwchar.c + libc-top-half/musl/src/stdio/ofl_add.c + libc-top-half/musl/src/stdio/ofl.c + libc-top-half/musl/src/stdio/open_memstream.c + libc-top-half/musl/src/stdio/open_wmemstream.c + libc-top-half/musl/src/stdio/__overflow.c + libc-top-half/musl/src/stdio/perror.c + libc-top-half/musl/src/stdio/printf.c + libc-top-half/musl/src/stdio/putc.c + libc-top-half/musl/src/stdio/putchar.c + libc-top-half/musl/src/stdio/putchar_unlocked.c + libc-top-half/musl/src/stdio/putc_unlocked.c + libc-top-half/musl/src/stdio/puts.c + libc-top-half/musl/src/stdio/putw.c + libc-top-half/musl/src/stdio/putwc.c + libc-top-half/musl/src/stdio/putwchar.c + libc-top-half/musl/src/stdio/rewind.c + libc-top-half/musl/src/stdio/scanf.c + libc-top-half/musl/src/stdio/setbuf.c + libc-top-half/musl/src/stdio/setbuffer.c + libc-top-half/musl/src/stdio/setlinebuf.c + libc-top-half/musl/src/stdio/setvbuf.c + libc-top-half/musl/src/stdio/snprintf.c + libc-top-half/musl/src/stdio/sprintf.c + libc-top-half/musl/src/stdio/sscanf.c + libc-top-half/musl/src/stdio/stderr.c + libc-top-half/musl/src/stdio/stdin.c + libc-top-half/musl/src/stdio/__stdio_close.c + libc-top-half/musl/src/stdio/__stdio_exit.c + libc-top-half/musl/src/stdio/__stdio_read.c + libc-top-half/musl/src/stdio/__stdio_seek.c + libc-top-half/musl/src/stdio/__stdio_write.c + libc-top-half/musl/src/stdio/stdout.c + libc-top-half/musl/src/stdio/__stdout_write.c + libc-top-half/musl/src/stdio/__string_read.c + libc-top-half/musl/src/stdio/swprintf.c + libc-top-half/musl/src/stdio/swscanf.c + libc-top-half/musl/src/stdio/__toread.c + libc-top-half/musl/src/stdio/__towrite.c + libc-top-half/musl/src/stdio/__uflow.c + libc-top-half/musl/src/stdio/ungetc.c + libc-top-half/musl/src/stdio/ungetwc.c + libc-top-half/musl/src/stdio/vasprintf.c + libc-top-half/musl/src/stdio/vdprintf.c + libc-top-half/musl/src/stdio/vfprintf.c + libc-top-half/musl/src/stdio/vfscanf.c + libc-top-half/musl/src/stdio/vfwprintf.c + libc-top-half/musl/src/stdio/vfwscanf.c + libc-top-half/musl/src/stdio/vprintf.c + libc-top-half/musl/src/stdio/vscanf.c + libc-top-half/musl/src/stdio/vsnprintf.c + libc-top-half/musl/src/stdio/vsprintf.c + libc-top-half/musl/src/stdio/vsscanf.c + libc-top-half/musl/src/stdio/vswprintf.c + libc-top-half/musl/src/stdio/vswscanf.c + libc-top-half/musl/src/stdio/vwprintf.c + libc-top-half/musl/src/stdio/vwscanf.c + libc-top-half/musl/src/stdio/wprintf.c + libc-top-half/musl/src/stdio/wscanf.c + libc-top-half/musl/src/string/bcmp.c + libc-top-half/musl/src/string/bcopy.c + libc-top-half/musl/src/string/bzero.c + libc-top-half/musl/src/string/explicit_bzero.c + libc-top-half/musl/src/string/index.c + libc-top-half/musl/src/string/memccpy.c + libc-top-half/musl/src/string/memchr.c + libc-top-half/musl/src/string/memcmp.c + libc-top-half/musl/src/string/memcpy.c + libc-top-half/musl/src/string/memmem.c + libc-top-half/musl/src/string/memmove.c + libc-top-half/musl/src/string/mempcpy.c + libc-top-half/musl/src/string/memrchr.c + libc-top-half/musl/src/string/memset.c + libc-top-half/musl/src/string/rindex.c + libc-top-half/musl/src/string/stpcpy.c + libc-top-half/musl/src/string/stpncpy.c + libc-top-half/musl/src/string/strcasecmp.c + libc-top-half/musl/src/string/strcasestr.c + libc-top-half/musl/src/string/strcat.c + libc-top-half/musl/src/string/strchr.c + libc-top-half/musl/src/string/strchrnul.c + libc-top-half/musl/src/string/strcmp.c + libc-top-half/musl/src/string/strcpy.c + libc-top-half/musl/src/string/strcspn.c + libc-top-half/musl/src/string/strdup.c + libc-top-half/musl/src/string/strerror_r.c + libc-top-half/musl/src/string/strlcat.c + libc-top-half/musl/src/string/strlcpy.c + libc-top-half/musl/src/string/strlen.c + libc-top-half/musl/src/string/strncasecmp.c + libc-top-half/musl/src/string/strncat.c + libc-top-half/musl/src/string/strncmp.c + libc-top-half/musl/src/string/strncpy.c + libc-top-half/musl/src/string/strndup.c + libc-top-half/musl/src/string/strnlen.c + libc-top-half/musl/src/string/strpbrk.c + libc-top-half/musl/src/string/strrchr.c + libc-top-half/musl/src/string/strsep.c + libc-top-half/musl/src/string/strspn.c + libc-top-half/musl/src/string/strstr.c + libc-top-half/musl/src/string/strtok.c + libc-top-half/musl/src/string/strtok_r.c + libc-top-half/musl/src/string/strverscmp.c + libc-top-half/musl/src/string/swab.c + libc-top-half/musl/src/string/wcpcpy.c + libc-top-half/musl/src/string/wcpncpy.c + libc-top-half/musl/src/string/wcscasecmp.c + libc-top-half/musl/src/string/wcscasecmp_l.c + libc-top-half/musl/src/string/wcscat.c + libc-top-half/musl/src/string/wcschr.c + libc-top-half/musl/src/string/wcscmp.c + libc-top-half/musl/src/string/wcscpy.c + libc-top-half/musl/src/string/wcscspn.c + libc-top-half/musl/src/string/wcsdup.c + libc-top-half/musl/src/string/wcslen.c + libc-top-half/musl/src/string/wcsncasecmp.c + libc-top-half/musl/src/string/wcsncasecmp_l.c + libc-top-half/musl/src/string/wcsncat.c + libc-top-half/musl/src/string/wcsncmp.c + libc-top-half/musl/src/string/wcsncpy.c + libc-top-half/musl/src/string/wcsnlen.c + libc-top-half/musl/src/string/wcspbrk.c + libc-top-half/musl/src/string/wcsrchr.c + libc-top-half/musl/src/string/wcsspn.c + libc-top-half/musl/src/string/wcsstr.c + libc-top-half/musl/src/string/wcstok.c + libc-top-half/musl/src/string/wcswcs.c + libc-top-half/musl/src/string/wmemchr.c + libc-top-half/musl/src/string/wmemcmp.c + libc-top-half/musl/src/string/wmemcpy.c + libc-top-half/musl/src/string/wmemmove.c + libc-top-half/musl/src/string/wmemset.c + libc-top-half/musl/src/locale/catclose.c + libc-top-half/musl/src/locale/catgets.c + libc-top-half/musl/src/locale/catopen.c + libc-top-half/musl/src/locale/c_locale.c + libc-top-half/musl/src/locale/duplocale.c + libc-top-half/musl/src/locale/freelocale.c + libc-top-half/musl/src/locale/iconv.c + libc-top-half/musl/src/locale/iconv_close.c + libc-top-half/musl/src/locale/langinfo.c + libc-top-half/musl/src/locale/__lctrans.c + libc-top-half/musl/src/locale/localeconv.c + libc-top-half/musl/src/locale/locale_map.c + libc-top-half/musl/src/locale/__mo_lookup.c + libc-top-half/musl/src/locale/newlocale.c + libc-top-half/musl/src/locale/pleval.c + libc-top-half/musl/src/locale/setlocale.c + libc-top-half/musl/src/locale/strcoll.c + libc-top-half/musl/src/locale/strfmon.c + libc-top-half/musl/src/locale/strxfrm.c + libc-top-half/musl/src/locale/uselocale.c + libc-top-half/musl/src/locale/wcscoll.c + libc-top-half/musl/src/locale/wcsxfrm.c + libc-top-half/musl/src/stdlib/abs.c + libc-top-half/musl/src/stdlib/atof.c + libc-top-half/musl/src/stdlib/atoi.c + libc-top-half/musl/src/stdlib/atol.c + libc-top-half/musl/src/stdlib/atoll.c + libc-top-half/musl/src/stdlib/bsearch.c + libc-top-half/musl/src/stdlib/div.c + libc-top-half/musl/src/stdlib/ecvt.c + libc-top-half/musl/src/stdlib/fcvt.c + libc-top-half/musl/src/stdlib/gcvt.c + libc-top-half/musl/src/stdlib/imaxabs.c + libc-top-half/musl/src/stdlib/imaxdiv.c + libc-top-half/musl/src/stdlib/labs.c + libc-top-half/musl/src/stdlib/ldiv.c + libc-top-half/musl/src/stdlib/llabs.c + libc-top-half/musl/src/stdlib/lldiv.c + libc-top-half/musl/src/stdlib/qsort.c + libc-top-half/musl/src/stdlib/strtod.c + libc-top-half/musl/src/stdlib/strtol.c + libc-top-half/musl/src/stdlib/wcstod.c + libc-top-half/musl/src/stdlib/wcstol.c + libc-top-half/musl/src/search/hsearch.c + libc-top-half/musl/src/search/insque.c + libc-top-half/musl/src/search/lsearch.c + libc-top-half/musl/src/search/tdelete.c + libc-top-half/musl/src/search/tdestroy.c + libc-top-half/musl/src/search/tfind.c + libc-top-half/musl/src/search/tsearch.c + libc-top-half/musl/src/search/twalk.c + libc-top-half/musl/src/multibyte/btowc.c + libc-top-half/musl/src/multibyte/c16rtomb.c + libc-top-half/musl/src/multibyte/c32rtomb.c + libc-top-half/musl/src/multibyte/internal.c + libc-top-half/musl/src/multibyte/mblen.c + libc-top-half/musl/src/multibyte/mbrlen.c + libc-top-half/musl/src/multibyte/mbrtoc16.c + libc-top-half/musl/src/multibyte/mbrtoc32.c + libc-top-half/musl/src/multibyte/mbrtowc.c + libc-top-half/musl/src/multibyte/mbsinit.c + libc-top-half/musl/src/multibyte/mbsnrtowcs.c + libc-top-half/musl/src/multibyte/mbsrtowcs.c + libc-top-half/musl/src/multibyte/mbstowcs.c + libc-top-half/musl/src/multibyte/mbtowc.c + libc-top-half/musl/src/multibyte/wcrtomb.c + libc-top-half/musl/src/multibyte/wcsnrtombs.c + libc-top-half/musl/src/multibyte/wcsrtombs.c + libc-top-half/musl/src/multibyte/wcstombs.c + libc-top-half/musl/src/multibyte/wctob.c + libc-top-half/musl/src/multibyte/wctomb.c + libc-top-half/musl/src/regex/fnmatch.c + libc-top-half/musl/src/regex/glob.c + libc-top-half/musl/src/regex/regcomp.c + libc-top-half/musl/src/regex/regerror.c + libc-top-half/musl/src/regex/regexec.c + libc-top-half/musl/src/regex/tre-mem.c + libc-top-half/musl/src/prng/drand48.c + libc-top-half/musl/src/prng/lcong48.c + libc-top-half/musl/src/prng/lrand48.c + libc-top-half/musl/src/prng/mrand48.c + libc-top-half/musl/src/prng/__rand48_step.c + libc-top-half/musl/src/prng/rand.c + libc-top-half/musl/src/prng/random.c + libc-top-half/musl/src/prng/rand_r.c + libc-top-half/musl/src/prng/__seed48.c + libc-top-half/musl/src/prng/seed48.c + libc-top-half/musl/src/prng/srand48.c + libc-top-half/musl/src/conf/confstr.c + libc-top-half/musl/src/conf/fpathconf.c + libc-top-half/musl/src/conf/legacy.c + libc-top-half/musl/src/conf/pathconf.c + libc-top-half/musl/src/conf/sysconf.c + libc-top-half/musl/src/ctype/__ctype_b_loc.c + libc-top-half/musl/src/ctype/__ctype_get_mb_cur_max.c + libc-top-half/musl/src/ctype/__ctype_tolower_loc.c + libc-top-half/musl/src/ctype/__ctype_toupper_loc.c + libc-top-half/musl/src/ctype/isalnum.c + libc-top-half/musl/src/ctype/isalpha.c + libc-top-half/musl/src/ctype/isascii.c + libc-top-half/musl/src/ctype/isblank.c + libc-top-half/musl/src/ctype/iscntrl.c + libc-top-half/musl/src/ctype/isdigit.c + libc-top-half/musl/src/ctype/isgraph.c + libc-top-half/musl/src/ctype/islower.c + libc-top-half/musl/src/ctype/isprint.c + libc-top-half/musl/src/ctype/ispunct.c + libc-top-half/musl/src/ctype/isspace.c + libc-top-half/musl/src/ctype/isupper.c + libc-top-half/musl/src/ctype/iswalnum.c + libc-top-half/musl/src/ctype/iswalpha.c + libc-top-half/musl/src/ctype/iswblank.c + libc-top-half/musl/src/ctype/iswcntrl.c + libc-top-half/musl/src/ctype/iswctype.c + libc-top-half/musl/src/ctype/iswdigit.c + libc-top-half/musl/src/ctype/iswgraph.c + libc-top-half/musl/src/ctype/iswlower.c + libc-top-half/musl/src/ctype/iswprint.c + libc-top-half/musl/src/ctype/iswpunct.c + libc-top-half/musl/src/ctype/iswspace.c + libc-top-half/musl/src/ctype/iswupper.c + libc-top-half/musl/src/ctype/iswxdigit.c + libc-top-half/musl/src/ctype/isxdigit.c + libc-top-half/musl/src/ctype/toascii.c + libc-top-half/musl/src/ctype/tolower.c + libc-top-half/musl/src/ctype/toupper.c + libc-top-half/musl/src/ctype/towctrans.c + libc-top-half/musl/src/ctype/wcswidth.c + libc-top-half/musl/src/ctype/wctrans.c + libc-top-half/musl/src/ctype/wcwidth.c + libc-top-half/musl/src/math/acos.c + libc-top-half/musl/src/math/acosf.c + libc-top-half/musl/src/math/acosh.c + libc-top-half/musl/src/math/acoshf.c + libc-top-half/musl/src/math/acoshl.c + libc-top-half/musl/src/math/acosl.c + libc-top-half/musl/src/math/asin.c + libc-top-half/musl/src/math/asinf.c + libc-top-half/musl/src/math/asinh.c + libc-top-half/musl/src/math/asinhf.c + libc-top-half/musl/src/math/asinhl.c + libc-top-half/musl/src/math/asinl.c + libc-top-half/musl/src/math/atan2.c + libc-top-half/musl/src/math/atan2f.c + libc-top-half/musl/src/math/atan2l.c + libc-top-half/musl/src/math/atan.c + libc-top-half/musl/src/math/atanf.c + libc-top-half/musl/src/math/atanh.c + libc-top-half/musl/src/math/atanhf.c + libc-top-half/musl/src/math/atanhl.c + libc-top-half/musl/src/math/atanl.c + libc-top-half/musl/src/math/cbrt.c + libc-top-half/musl/src/math/cbrtf.c + libc-top-half/musl/src/math/cbrtl.c + libc-top-half/musl/src/math/ceill.c + libc-top-half/musl/src/math/copysignl.c + libc-top-half/musl/src/math/__cos.c + libc-top-half/musl/src/math/cos.c + libc-top-half/musl/src/math/__cosdf.c + libc-top-half/musl/src/math/cosf.c + libc-top-half/musl/src/math/cosh.c + libc-top-half/musl/src/math/coshf.c + libc-top-half/musl/src/math/coshl.c + libc-top-half/musl/src/math/__cosl.c + libc-top-half/musl/src/math/cosl.c + libc-top-half/musl/src/math/erf.c + libc-top-half/musl/src/math/erff.c + libc-top-half/musl/src/math/erfl.c + libc-top-half/musl/src/math/exp10.c + libc-top-half/musl/src/math/exp10f.c + libc-top-half/musl/src/math/exp10l.c + libc-top-half/musl/src/math/exp2.c + libc-top-half/musl/src/math/exp2f.c + libc-top-half/musl/src/math/exp2f_data.c + libc-top-half/musl/src/math/exp2l.c + libc-top-half/musl/src/math/exp.c + libc-top-half/musl/src/math/exp_data.c + libc-top-half/musl/src/math/expf.c + libc-top-half/musl/src/math/expl.c + libc-top-half/musl/src/math/expm1.c + libc-top-half/musl/src/math/expm1f.c + libc-top-half/musl/src/math/expm1l.c + libc-top-half/musl/src/math/__expo2.c + libc-top-half/musl/src/math/__expo2f.c + libc-top-half/musl/src/math/fabsl.c + libc-top-half/musl/src/math/fdim.c + libc-top-half/musl/src/math/fdimf.c + libc-top-half/musl/src/math/fdiml.c + libc-top-half/musl/src/math/finite.c + libc-top-half/musl/src/math/finitef.c + libc-top-half/musl/src/math/floorl.c + libc-top-half/musl/src/math/fma.c + libc-top-half/musl/src/math/fmaf.c + libc-top-half/musl/src/math/fmal.c + libc-top-half/musl/src/math/fmaxl.c + libc-top-half/musl/src/math/fminl.c + libc-top-half/musl/src/math/fmod.c + libc-top-half/musl/src/math/fmodf.c + libc-top-half/musl/src/math/fmodl.c + libc-top-half/musl/src/math/frexp.c + libc-top-half/musl/src/math/frexpf.c + libc-top-half/musl/src/math/frexpl.c + libc-top-half/musl/src/math/hypot.c + libc-top-half/musl/src/math/hypotf.c + libc-top-half/musl/src/math/hypotl.c + libc-top-half/musl/src/math/ilogb.c + libc-top-half/musl/src/math/ilogbf.c + libc-top-half/musl/src/math/ilogbl.c + libc-top-half/musl/src/math/__invtrigl.c + libc-top-half/musl/src/math/j0.c + libc-top-half/musl/src/math/j0f.c + libc-top-half/musl/src/math/j1.c + libc-top-half/musl/src/math/j1f.c + libc-top-half/musl/src/math/jn.c + libc-top-half/musl/src/math/jnf.c + libc-top-half/musl/src/math/ldexp.c + libc-top-half/musl/src/math/ldexpf.c + libc-top-half/musl/src/math/ldexpl.c + libc-top-half/musl/src/math/lgamma.c + libc-top-half/musl/src/math/lgammaf.c + libc-top-half/musl/src/math/lgammaf_r.c + libc-top-half/musl/src/math/lgammal.c + libc-top-half/musl/src/math/lgamma_r.c + libc-top-half/musl/src/math/llrint.c + libc-top-half/musl/src/math/llrintf.c + libc-top-half/musl/src/math/llrintl.c + libc-top-half/musl/src/math/llround.c + libc-top-half/musl/src/math/llroundf.c + libc-top-half/musl/src/math/llroundl.c + libc-top-half/musl/src/math/log10.c + libc-top-half/musl/src/math/log10f.c + libc-top-half/musl/src/math/log10l.c + libc-top-half/musl/src/math/log1p.c + libc-top-half/musl/src/math/log1pf.c + libc-top-half/musl/src/math/log1pl.c + libc-top-half/musl/src/math/log2.c + libc-top-half/musl/src/math/log2_data.c + libc-top-half/musl/src/math/log2f.c + libc-top-half/musl/src/math/log2f_data.c + libc-top-half/musl/src/math/log2l.c + libc-top-half/musl/src/math/logb.c + libc-top-half/musl/src/math/logbf.c + libc-top-half/musl/src/math/logbl.c + libc-top-half/musl/src/math/log.c + libc-top-half/musl/src/math/log_data.c + libc-top-half/musl/src/math/logf.c + libc-top-half/musl/src/math/logf_data.c + libc-top-half/musl/src/math/logl.c + libc-top-half/musl/src/math/lrint.c + libc-top-half/musl/src/math/lrintf.c + libc-top-half/musl/src/math/lrintl.c + libc-top-half/musl/src/math/lround.c + libc-top-half/musl/src/math/lroundf.c + libc-top-half/musl/src/math/lroundl.c + libc-top-half/musl/src/math/__math_divzero.c + libc-top-half/musl/src/math/__math_divzerof.c + libc-top-half/musl/src/math/__math_invalid.c + libc-top-half/musl/src/math/__math_invalidf.c + libc-top-half/musl/src/math/__math_oflow.c + libc-top-half/musl/src/math/__math_oflowf.c + libc-top-half/musl/src/math/__math_uflow.c + libc-top-half/musl/src/math/__math_uflowf.c + libc-top-half/musl/src/math/__math_xflow.c + libc-top-half/musl/src/math/__math_xflowf.c + libc-top-half/musl/src/math/modf.c + libc-top-half/musl/src/math/modff.c + libc-top-half/musl/src/math/modfl.c + libc-top-half/musl/src/math/nan.c + libc-top-half/musl/src/math/nanf.c + libc-top-half/musl/src/math/nanl.c + libc-top-half/musl/src/math/nearbyintl.c + libc-top-half/musl/src/math/nextafter.c + libc-top-half/musl/src/math/nextafterf.c + libc-top-half/musl/src/math/nextafterl.c + libc-top-half/musl/src/math/nexttoward.c + libc-top-half/musl/src/math/nexttowardf.c + libc-top-half/musl/src/math/nexttowardl.c + libc-top-half/musl/src/math/__polevll.c + libc-top-half/musl/src/math/pow.c + libc-top-half/musl/src/math/pow_data.c + libc-top-half/musl/src/math/powf.c + libc-top-half/musl/src/math/powf_data.c + libc-top-half/musl/src/math/powl.c + libc-top-half/musl/src/math/remainder.c + libc-top-half/musl/src/math/remainderf.c + libc-top-half/musl/src/math/remainderl.c + libc-top-half/musl/src/math/__rem_pio2.c + libc-top-half/musl/src/math/__rem_pio2f.c + libc-top-half/musl/src/math/__rem_pio2_large.c + libc-top-half/musl/src/math/__rem_pio2l.c + libc-top-half/musl/src/math/remquo.c + libc-top-half/musl/src/math/remquof.c + libc-top-half/musl/src/math/remquol.c + libc-top-half/musl/src/math/rintl.c + libc-top-half/musl/src/math/round.c + libc-top-half/musl/src/math/roundf.c + libc-top-half/musl/src/math/roundl.c + libc-top-half/musl/src/math/scalb.c + libc-top-half/musl/src/math/scalbf.c + libc-top-half/musl/src/math/scalbln.c + libc-top-half/musl/src/math/scalblnf.c + libc-top-half/musl/src/math/scalblnl.c + libc-top-half/musl/src/math/scalbn.c + libc-top-half/musl/src/math/scalbnf.c + libc-top-half/musl/src/math/scalbnl.c + libc-top-half/musl/src/math/signgam.c + libc-top-half/musl/src/math/significand.c + libc-top-half/musl/src/math/significandf.c + libc-top-half/musl/src/math/__sin.c + libc-top-half/musl/src/math/sin.c + libc-top-half/musl/src/math/sincos.c + libc-top-half/musl/src/math/sincosf.c + libc-top-half/musl/src/math/sincosl.c + libc-top-half/musl/src/math/__sindf.c + libc-top-half/musl/src/math/sinf.c + libc-top-half/musl/src/math/sinh.c + libc-top-half/musl/src/math/sinhf.c + libc-top-half/musl/src/math/sinhl.c + libc-top-half/musl/src/math/__sinl.c + libc-top-half/musl/src/math/sinl.c + libc-top-half/musl/src/math/sqrtl.c + libc-top-half/musl/src/math/__tan.c + libc-top-half/musl/src/math/tan.c + libc-top-half/musl/src/math/__tandf.c + libc-top-half/musl/src/math/tanf.c + libc-top-half/musl/src/math/tanh.c + libc-top-half/musl/src/math/tanhf.c + libc-top-half/musl/src/math/tanhl.c + libc-top-half/musl/src/math/__tanl.c + libc-top-half/musl/src/math/tanl.c + libc-top-half/musl/src/math/tgamma.c + libc-top-half/musl/src/math/tgammaf.c + libc-top-half/musl/src/math/tgammal.c + libc-top-half/musl/src/math/truncl.c + libc-top-half/musl/src/complex/cabs.c + libc-top-half/musl/src/complex/cabsf.c + libc-top-half/musl/src/complex/cabsl.c + libc-top-half/musl/src/complex/cacos.c + libc-top-half/musl/src/complex/cacosf.c + libc-top-half/musl/src/complex/cacosh.c + libc-top-half/musl/src/complex/cacoshf.c + libc-top-half/musl/src/complex/cacoshl.c + libc-top-half/musl/src/complex/cacosl.c + libc-top-half/musl/src/complex/carg.c + libc-top-half/musl/src/complex/cargf.c + libc-top-half/musl/src/complex/cargl.c + libc-top-half/musl/src/complex/casin.c + libc-top-half/musl/src/complex/casinf.c + libc-top-half/musl/src/complex/casinh.c + libc-top-half/musl/src/complex/casinhf.c + libc-top-half/musl/src/complex/casinhl.c + libc-top-half/musl/src/complex/casinl.c + libc-top-half/musl/src/complex/catan.c + libc-top-half/musl/src/complex/catanf.c + libc-top-half/musl/src/complex/catanh.c + libc-top-half/musl/src/complex/catanhf.c + libc-top-half/musl/src/complex/catanhl.c + libc-top-half/musl/src/complex/catanl.c + libc-top-half/musl/src/complex/ccos.c + libc-top-half/musl/src/complex/ccosf.c + libc-top-half/musl/src/complex/ccosh.c + libc-top-half/musl/src/complex/ccoshf.c + libc-top-half/musl/src/complex/ccoshl.c + libc-top-half/musl/src/complex/ccosl.c + libc-top-half/musl/src/complex/__cexp.c + libc-top-half/musl/src/complex/cexp.c + libc-top-half/musl/src/complex/__cexpf.c + libc-top-half/musl/src/complex/cexpf.c + libc-top-half/musl/src/complex/cexpl.c + libc-top-half/musl/src/complex/cimagl.c + libc-top-half/musl/src/complex/clog.c + libc-top-half/musl/src/complex/clogf.c + libc-top-half/musl/src/complex/clogl.c + libc-top-half/musl/src/complex/conj.c + libc-top-half/musl/src/complex/conjf.c + libc-top-half/musl/src/complex/conjl.c + libc-top-half/musl/src/complex/cpow.c + libc-top-half/musl/src/complex/cpowf.c + libc-top-half/musl/src/complex/cpowl.c + libc-top-half/musl/src/complex/cproj.c + libc-top-half/musl/src/complex/cprojf.c + libc-top-half/musl/src/complex/cprojl.c + libc-top-half/musl/src/complex/creall.c + libc-top-half/musl/src/complex/csin.c + libc-top-half/musl/src/complex/csinf.c + libc-top-half/musl/src/complex/csinh.c + libc-top-half/musl/src/complex/csinhf.c + libc-top-half/musl/src/complex/csinhl.c + libc-top-half/musl/src/complex/csinl.c + libc-top-half/musl/src/complex/csqrt.c + libc-top-half/musl/src/complex/csqrtf.c + libc-top-half/musl/src/complex/csqrtl.c + libc-top-half/musl/src/complex/ctan.c + libc-top-half/musl/src/complex/ctanf.c + libc-top-half/musl/src/complex/ctanh.c + libc-top-half/musl/src/complex/ctanhf.c + libc-top-half/musl/src/complex/ctanhl.c + libc-top-half/musl/src/complex/ctanl.c + libc-top-half/musl/src/crypt/crypt_blowfish.c + libc-top-half/musl/src/crypt/crypt.c + libc-top-half/musl/src/crypt/crypt_des.c + libc-top-half/musl/src/crypt/crypt_md5.c + libc-top-half/musl/src/crypt/crypt_r.c + libc-top-half/musl/src/crypt/crypt_sha256.c + libc-top-half/musl/src/crypt/crypt_sha512.c + libc-top-half/musl/src/crypt/encrypt.c + libc-top-half/sources/arc4random.c) +target_include_directories(libc-top-half PRIVATE + libc-top-half/musl/src/include + libc-top-half/musl/src/internal + libc-top-half/musl/arch/wasm32 + libc-top-half/musl/arch/generic + libc-top-half/headers/private) +target_compile_options(libc-top-half PRIVATE + -Wno-parentheses + -Wno-shift-op-parentheses + -Wno-bitwise-op-parentheses + -Wno-logical-op-parentheses + -Wno-string-plus-int + -Wno-dangling-else + -Wno-unknown-pragmas) +add_dependencies(libc-top-half sysroot-headers) + +target_link_libraries(c PRIVATE + libc-bottom-half + libc-top-half + dlmalloc) + +add_custom_command(TARGET c POST_BUILD + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libm.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/librt.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libpthread.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libcrypt.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libutil.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libxnet.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libresolv.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libdl.a) From 2b965e3ffe39526f44067f4a81c5b7d228f52ed5 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 7 Jan 2020 21:39:25 -0800 Subject: [PATCH 03/10] build: ensure that the crt is copied properly Make crt1 a static library so that we can have a post-build command copy the object file to the correct location and rename it properly. Unfortunately, renaming the object file itself is somewhat challenging. --- CMakeLists.txt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dc8347ea..06b6143dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -272,9 +272,16 @@ add_custom_target(sysroot-headers DEPENDS ${CMAKE_BINARY_DIR}/sysroot) # startup files -add_library(startup-files OBJECT +add_library(crt1 OBJECT libc-bottom-half/crt/crt1.c) -add_dependencies(startup-files sysroot-headers) +add_dependencies(crt1 sysroot-headers) + +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot/lib/crt1.o + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/lib + COMMAND ${CMAKE_COMMAND} -E copy_if_different $ ${CMAKE_BINARY_DIR}/sysroot/lib/crt1.o) +add_custom_target(crt1.o ALL + DEPENDS ${CMAKE_BINARY_DIR}/sysroot/lib/crt1.o) +add_dependencies(crt1.o crt1) add_library(c-printscan-no-floating-point From c71578c945f239cc14ab2d1a37e8981b6eeac519 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 7 Jan 2020 21:40:23 -0800 Subject: [PATCH 04/10] build: generate targets for the stubs Create targets for the stubs and provide proper dependency tracking. --- CMakeLists.txt | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06b6143dd..373fc27f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1127,12 +1127,9 @@ target_link_libraries(c PRIVATE libc-top-half dlmalloc) -add_custom_command(TARGET c POST_BUILD - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libm.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/librt.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libpthread.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libcrypt.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libutil.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libxnet.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libresolv.a - COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/libdl.a) +foreach(stub m rt pthread crypt util xnet resolve dl) + add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot/lib/lib${stub}.a + COMMAND ${CMAKE_AR} crs ${CMAKE_BINARY_DIR}/sysroot/lib/lib${stub}.a) + add_custom_target(${stub} ALL + DEPENDS ${CMAKE_BINARY_DIR}/sysroot/lib/lib${stub}.a) +endforeach() From f8b4634306340c171ed8f2a8973261b65a0c6181 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 7 Jan 2020 21:40:53 -0800 Subject: [PATCH 05/10] build: add `gen-imports` to create `libc.imports` This adds a python script to generate libc.imports as the shell utilities may not be available on Windows. --- .azure-pipelines.yml | 13 +++++++++--- CMakeLists.txt | 15 +++++++++++++ tools/gen-imports.py | 50 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+), 3 deletions(-) create mode 100755 tools/gen-imports.py diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 44b6f2fae..71ca7ad90 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -48,8 +48,7 @@ jobs: rustup update stable --no-self-update rustup default stable rustup component add llvm-tools-preview - echo "##vso[task.setvariable variable=WASM_NM;]$(rustc --print sysroot|sed 's|C:|/c|'|sed 's|\\|/|g')/lib/rustlib/x86_64-pc-windows-msvc/bin/llvm-nm.exe" - displayName: Install llvm-nm (Windows) + displayName: Install LLVM tools (Windows) condition: and(succeeded(), eq( variables['Agent.OS'], 'Windows_NT' )) - bash: | echo "##vso[task.setvariable variable=LLVM_AR]$(which llvm-ar)" @@ -59,10 +58,18 @@ jobs: echo ##vso[task.setvariable variable=LLVM_AR]%CD%\citools\clang-rust\bin\llvm-ar.exe displayName: Find llvm-ar (Windows) condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) + - bash: | + echo "##vso[task.setvariable variable=LLVM_NM]$(which llvm-nm)" + displayName: Find llvm-nm (!Windows) + condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT'))) + - bash: | + echo "##vso[task.setvariable variable=LLVM_NM]$(rustc --print sysroot)\\lib\\rustlib\\x86_64-pc-windows-msvc\\bin\\llvm-nm.exe" + displayName: Find llvm-nm (Windows) + condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - task: CMake@1 inputs: workingDirectory: $(Build.BinariesDirectory) - cmakeArgs: -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_AR=$(LLVM_AR) -DCMAKE_C_COMPILER=clang -S $(Build.SourcesDirectory) + cmakeArgs: -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_AR=$(LLVM_AR) -DCMAKE_NM=$(LLVM_NM) -DCMAKE_C_COMPILER=clang -S $(Build.SourcesDirectory) displayName: Configure - task: CMake@1 inputs: diff --git a/CMakeLists.txt b/CMakeLists.txt index 373fc27f7..afced1577 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,8 @@ include(CMakeDependentOption) option(ENABLE_THREADS "enable threads" OFF) +find_package(Python COMPONENTS Interpreter REQUIRED) + add_compile_options(--sysroot=${CMAKE_BINARY_DIR}/sysroot) # WebAssembly floating point match doesn't trap @@ -1133,3 +1135,16 @@ foreach(stub m rt pthread crypt util xnet resolve dl) add_custom_target(${stub} ALL DEPENDS ${CMAKE_BINARY_DIR}/sysroot/lib/lib${stub}.a) endforeach() + +add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot/lib/libc.imports + COMMAND + ${Python_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/gen-imports.py + --nm ${CMAKE_NM} + --output ${CMAKE_BINARY_DIR}/sysroot/lib/libc.imports + $ + ${CMAKE_BINARY_DIR}/sysroot/lib/crt1.o + DEPENDS + ${PROJECT_SOURCE_DIR}/tools/gen-imports.py) +add_custom_target(libc.imports ALL + DEPENDS ${CMAKE_BINARY_DIR}/sysroot/lib/libc.imports) +add_dependencies(libc.imports c crt1.o) diff --git a/tools/gen-imports.py b/tools/gen-imports.py new file mode 100755 index 000000000..fa8d97775 --- /dev/null +++ b/tools/gen-imports.py @@ -0,0 +1,50 @@ +# -*- encoding: utf-8 -*- +"""Generate import file for a target + +This utility scans a static library to identify the undefined symbols which are +externally visible which it expects to have provided. This is used to generate +the import file definitions for WASI. + +Example: + $ python gen-imports.py --nm llvm-nm --prefix __wasi_ libc.a +""" + +import argparse +import os +import re +import subprocess +import sys + +from subprocess import Popen + +def main(argv): + parser = argparse.ArgumentParser('gen-imports') + parser.add_argument('--nm', default = 'nm') + parser.add_argument('--prefix', default = '_?_wasi_') + parser.add_argument('--output', required = True) + + args, unparsed = parser.parse_known_args() + + args.nm = os.path.normpath(args.nm) + args.output = os.path.normpath(args.output) + + process = Popen([ + args.nm, + '--undefined-only', + '--extern-only', + '--just-symbol-name', + ] + unparsed, + stdout = subprocess.PIPE) + output, error = process.communicate() + + prefix = re.compile(args.prefix) + lines = output.decode('utf-8').splitlines() + symbols = [ line for line in lines if not line.endswith(':') ] + + with open(args.output, 'w') as imports: + for symbol in sorted(set(symbols)): + if prefix.match(symbol): + imports.write('{}\n'.format(symbols)) + +if __name__ == '__main__': + main(sys.argv) From 69894f9584e666b5dd051e37122f0c9826796059 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 11 Jan 2020 15:18:01 -0800 Subject: [PATCH 06/10] build: add `gen-predefined-macros` Add a new `gen-predefined-macros` tool to generate the `predefined-macros.txt` and `include-all.c` resources. This allows for a portable way to generate these files, which is important for build environments like Windows which do not have the unix tools available. --- CMakeLists.txt | 48 ++++++++---- tools/gen-imports.py | 2 +- tools/gen-predefined-macros.py | 136 +++++++++++++++++++++++++++++++++ 3 files changed, 172 insertions(+), 14 deletions(-) create mode 100644 tools/gen-predefined-macros.py diff --git a/CMakeLists.txt b/CMakeLists.txt index afced1577..a04c8fa78 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,8 +33,13 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/alltypes.h.gen ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/alltypes.h.in ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/alltypes.h.in) -add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot - COMMAND ${CMAKE_COMMAND} -E make_directory +add_custom_command( + OUTPUT + ${CMAKE_BINARY_DIR}/sysroot + ${CMAKE_BINARY_DIR}/sysroot/share/include-all.c + + COMMAND + ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/include/ ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ ${CMAKE_BINARY_DIR}/sysroot/include/bits/ @@ -43,7 +48,8 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot ${CMAKE_BINARY_DIR}/sysroot/include/sys/ ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/basics/include/__errno.h ${PROJECT_SOURCE_DIR}/basics/include/__functions_malloc.h ${PROJECT_SOURCE_DIR}/basics/include/__functions_memcpy.h @@ -178,7 +184,8 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot $<$:${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/pthread.h> ${CMAKE_BINARY_DIR}/sysroot/include/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/ftp.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/inet.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/nameser_compat.h @@ -187,7 +194,8 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/arpa/tftp.h ${CMAKE_BINARY_DIR}/sysroot/include/arpa/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/fenv.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/hwcap.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/generic/bits/ioctl_fix.h @@ -210,7 +218,8 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot ${PROJECT_SOURCE_DIR}/libc-top-half/musl/arch/wasm32/bits/stdint.h ${CMAKE_BINARY_DIR}/sysroot/include/bits/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/icmp6.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/igmp.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/in.h @@ -222,11 +231,13 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netinet/udp.h ${CMAKE_BINARY_DIR}/sysroot/include/netinet/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/netpacket/packet.h - ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ + ${CMAKE_BINARY_DIR}/sysroot/include/netpacket/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/dir.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/errno.h ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/eventfd.h @@ -257,22 +268,33 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot ${PROJECT_SOURCE_DIR}/libc-top-half/musl/include/sys/utsname.h ${CMAKE_BINARY_DIR}/sysroot/include/sys/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/api.h ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc-find-relpath.h ${PROJECT_SOURCE_DIR}/libc-bottom-half/headers/public/wasi/libc.h ${CMAKE_BINARY_DIR}/sysroot/include/wasi/ - COMMAND ${CMAKE_COMMAND} -E copy_if_different + COMMAND + ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/alltypes.h.gen ${CMAKE_BINARY_DIR}/sysroot/include/bits/alltypes.h + COMMAND + ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/sysroot/share + + COMMAND + ${Python_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/gen-predefined-macros.py + --cc ${CMAKE_C_COMPILER} + --output-directory ${CMAKE_BINARY_DIR}/sysroot/share + --sysroot ${CMAKE_BINARY_DIR}/sysroot + -target ${CMAKE_C_COMPILER_TARGET} -O2 -DNDEBUG + DEPENDS + ${PROJECT_SOURCE_DIR}/tools/gen-predefined-macros.py ${CMAKE_BINARY_DIR}/alltypes.h.gen) add_custom_target(sysroot-headers DEPENDS ${CMAKE_BINARY_DIR}/sysroot) - - # startup files add_library(crt1 OBJECT libc-bottom-half/crt/crt1.c) diff --git a/tools/gen-imports.py b/tools/gen-imports.py index fa8d97775..ca9e44df8 100755 --- a/tools/gen-imports.py +++ b/tools/gen-imports.py @@ -33,7 +33,7 @@ def main(argv): '--undefined-only', '--extern-only', '--just-symbol-name', - ] + unparsed, + ] + [ os.path.normpath(path) for path in unparsed ], stdout = subprocess.PIPE) output, error = process.communicate() diff --git a/tools/gen-predefined-macros.py b/tools/gen-predefined-macros.py new file mode 100644 index 000000000..023ccc82f --- /dev/null +++ b/tools/gen-predefined-macros.py @@ -0,0 +1,136 @@ +# -*- encoding: utf-8 -*- +"""Generate macro enumeration for WASI target + +This utility generates the full list of compiler macros defined during the WASI +builds. It writes out the `predefined-macros.txt` and `include-all.c` files +into the directory specificed. + +Examples: + $ python gen-predefined-macros.py --cc clang --sysroot sysroot --output-directory sysroot/share +""" + +import argparse +import os +import re +import subprocess +import sys + +from subprocess import Popen + +def _enumerate_headers(directory): + headers = set() + + for root, directories, files in os.walk(directory): + # ignore the bits directories as they are internal implementation + # details + directories[:] = [ d for d in directories if not d == 'bits' ] + + # Compute the include relative path, however special case '.' to be + # ignored as a prefix. + path = os.path.relpath(root, directory) + if path == '.': + path = '' + + # ignore mman.h + # XXX(compnerd) document why mman.h is being ignored + for include in filter(lambda file: not file == 'mman.h', files): + headers.add(os.path.join(path, include)) + + return headers + +def _enumerate_defines(cc, sysroot, flags, include_all_c): + include = os.path.join(sysroot, 'include') + + # Collect all the predefined macros ... + process = Popen([ + cc, + '-D_ALL_SOURCE', + + # ... except for compiler names to keep these + # compiler-idependent + '-U__llvm__', + '-U__clang__', + + # ... except for the compiler version macros which we do + # not need to track here + '-U__clang_major__', + '-U__clang_minor__', + '-U__clang_patchlevel__', + '-U__clang_version__', + + '-U__GNUC__', + '-U__GNUC_MINOR__', + '-U__GNUC_MAJOR__', + '-U__GNUC_PATCHLEVEL__', + + '-U__VERSION__', + + # ... marking the sysroot as a system include path as + # clang will include its resource directory include path + # earlier producing compiler-specific output + '-isystem', include, + + '-E', include_all_c, + '-dM', + + '-Wno-#warnings', + ] + flags, + stdout = subprocess.PIPE, + stderr = sys.stderr) + output, error = process.communicate() + + if process.returncode: + sys.exit(process.returncode) + + defines = output.decode('utf-8').splitlines() + + # filter out + # - __FLT16_* for now as not all versions of clang have these + # - __FLOAT128__ as it is not in clang 8.0 + __FLT16_ = re.compile(r'\b__FLT16_') + __FLOAT128__ = re.compile(r'\b__FLOAT128__\b') + + defines = [ + define for define in defines if not ( + re.search(__FLT16_, define) or + re.search(__FLOAT128__, define) or + False + ) + ] + + # For the __*_ATOMIC_*_LOCK_FREE macros, squash individual compiler names to + # attempt to keep these files compiler-independent + defines = [ + re.sub(r'__[A-Z0-9]*_ATOMIC_([A-Z0-9_]*)_LOCK_FREE', + r'__compiler_ATOMIC_\1_LOCK_FREE', define) + for define in defines + ] + + return defines + +def main(argv): + parser = argparse.ArgumentParser('gen-predefined-macros') + parser.add_argument('--cc', default = 'clang') + parser.add_argument('--sysroot', required = True) + parser.add_argument('--output-directory', required = True, dest = 'output') + + args, unparsed = parser.parse_known_args() + + args.output = os.path.normpath(args.output) + args.sysroot = os.path.normpath(args.sysroot) + + include = os.path.join(args.sysroot, 'include') + include_all_c = os.path.join(args.output, 'include-all.c') + predefined_macros_txt = os.path.join(args.output, 'predefined-macros.txt') + + with open(include_all_c, 'w') as source: + for header in sorted(_enumerate_headers(include)): + source.write('#include <{}>\n'.format(header)) + + with open(predefined_macros_txt, 'w') as macros: + for define in _enumerate_defines(args.cc, args.sysroot, unparsed, + include_all_c): + macros.write('{}\n'.format(define)) + +if __name__ == '__main__': + main(sys.argv) From 8839b3b59e06d6cfcba14eee84f9b28d84c780e6 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 11 Jan 2020 17:12:52 -0800 Subject: [PATCH 07/10] CI: use python 3.7.x --- .azure-pipelines.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 71ca7ad90..245be9f2f 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -66,10 +66,24 @@ jobs: echo "##vso[task.setvariable variable=LLVM_NM]$(rustc --print sysroot)\\lib\\rustlib\\x86_64-pc-windows-msvc\\bin\\llvm-nm.exe" displayName: Find llvm-nm (Windows) condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) + - task: UsePythonVersion@0 + inputs: + versionSpec: 3.7 + addToPath: true + displayName: Select Python + name: python + - bash: | + echo "##vso[task.setvariable variable=PYTHON]$(python.pythonLocation)/python" + displayName: Find Python (!Windows) + condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT'))) + - script: | + echo ##vso[task.setvariable variable=PYTHON]$(python.pythonLocation)\python.exe + displayName: Find Python (Windows) + condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - task: CMake@1 inputs: workingDirectory: $(Build.BinariesDirectory) - cmakeArgs: -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_AR=$(LLVM_AR) -DCMAKE_NM=$(LLVM_NM) -DCMAKE_C_COMPILER=clang -S $(Build.SourcesDirectory) + cmakeArgs: -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_AR=$(LLVM_AR) -DCMAKE_NM=$(LLVM_NM) -DCMAKE_C_COMPILER=clang -DPython_EXECUTABLE=$(PYTHON) -S $(Build.SourcesDirectory) displayName: Configure - task: CMake@1 inputs: From b8652e9003f47d64db890fe2583418ee0684273f Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 11 Jan 2020 17:59:28 -0800 Subject: [PATCH 08/10] CI: build in verbose mode --- .azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 245be9f2f..c15a29c7e 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -90,6 +90,7 @@ jobs: workingDirectory: $(Build.BinariesDirectory) cmakeArgs: --build . displayName: Build + env: { "VERBOSE": "1" } - publish: $(Build.BinariesDirectory)/sysroot artifact: wasi-libc condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) From 76383067fdd657d66c6c4402cd97bfaf19765003 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 11 Jan 2020 20:12:51 -0800 Subject: [PATCH 09/10] build: add tests --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a04c8fa78..1513e0122 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.12.1) project(wasi-libc LANGUAGES C) +enable_testing() set(CMAKE_C_COMPILE_OPTIONS_TARGET "-target ") set(CMAKE_C_COMPILER_TARGET wasm32-unknown-wasi CACHE STRING @@ -1170,3 +1171,8 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/sysroot/lib/libc.imports add_custom_target(libc.imports ALL DEPENDS ${CMAKE_BINARY_DIR}/sysroot/lib/libc.imports) add_dependencies(libc.imports c crt1.o) + +add_test(NAME check-metadata + COMMAND ${CMAKE_COMMAND} -E compare_files --ignore-eol ${PROJECT_SOURCE_DIR}/expected/wasm32-wasi/predefined-macros.txt ${CMAKE_BINARY_DIR}/sysroot/share/predefined-macros.txt) +add_test(NAME check-headers + COMMAND ${CMAKE_C_COMPILER} -target ${CMAKE_C_COMPILER_TARGET} --sysroot=${CMAKE_BINARY_DIR}/sysroot -fsyntax-only "-Wno#warnings" ${CMAKE_BINARY_DIR}/sysroot/share/include-all.c) From d68f3d385c442b9fbc50ffe018cc89b349cc5193 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sat, 11 Jan 2020 20:13:15 -0800 Subject: [PATCH 10/10] build: remove Makefile --- Makefile | 513 ------------------------------------------------------- 1 file changed, 513 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 4fa5fcb96..000000000 --- a/Makefile +++ /dev/null @@ -1,513 +0,0 @@ -# These variables are specifically meant to be overridable via -# the make command-line. -WASM_CC ?= clang -WASM_NM ?= $(patsubst %clang,%llvm-nm,$(WASM_CC)) -WASM_AR ?= $(patsubst %clang,%llvm-ar,$(WASM_CC)) -WASM_CFLAGS ?= -O2 -DNDEBUG -# The directory where we build the sysroot. -SYSROOT ?= $(CURDIR)/sysroot -# A directory to install to for "make install". -INSTALL_DIR ?= /usr/local -# single or posix -THREAD_MODEL = single -# yes or no -BUILD_DLMALLOC = yes -BUILD_LIBC_BOTTOM_HALF = yes -BUILD_LIBC_TOP_HALF = yes -# The directory where we're store intermediate artifacts. -OBJDIR = $(CURDIR)/build - -# Check dependencies. -ifeq ($(BUILD_LIBC_TOP_HALF),yes) -ifneq ($(BUILD_LIBC_BOTTOM_HALF),yes) -$(error BUILD_LIBC_TOP_HALF=yes depends on BUILD_LIBC_BOTTOM_HALF=yes) -endif -endif -ifeq ($(BUILD_LIBC_BOTTOM_HALF),yes) -ifneq ($(BUILD_DLMALLOC),yes) -$(error BUILD_LIBC_BOTTOM_HALF=yes depends on BUILD_DLMALLOC=yes) -endif -endif - -# These variables describe the locations of various files and -# directories in the source tree. -BASICS_DIR = $(CURDIR)/basics -BASICS_INC = $(BASICS_DIR)/include -BASICS_CRT_SOURCES = $(wildcard $(BASICS_DIR)/crt/*.c) -BASICS_SOURCES = \ - $(wildcard $(BASICS_DIR)/sources/*.c) \ - $(wildcard $(BASICS_DIR)/sources/math/*.c) -DLMALLOC_DIR = $(CURDIR)/dlmalloc -DLMALLOC_SRC_DIR = $(DLMALLOC_DIR)/src -DLMALLOC_SOURCES = $(DLMALLOC_SRC_DIR)/dlmalloc.c -DLMALLOC_INC = $(DLMALLOC_DIR)/include -LIBC_BOTTOM_HALF_DIR = $(CURDIR)/libc-bottom-half -LIBC_BOTTOM_HALF_CLOUDLIBC_SRC = $(LIBC_BOTTOM_HALF_DIR)/cloudlibc/src -LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC = $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)/include -LIBC_BOTTOM_HALF_HEADERS_PUBLIC = $(LIBC_BOTTOM_HALF_DIR)/headers/public -LIBC_BOTTOM_HALF_HEADERS_PRIVATE = $(LIBC_BOTTOM_HALF_DIR)/headers/private -LIBC_BOTTOM_HALF_LIBPREOPEN_DIR = $(LIBC_BOTTOM_HALF_DIR)/libpreopen -LIBC_BOTTOM_HALF_SOURCES = $(LIBC_BOTTOM_HALF_DIR)/sources -LIBC_BOTTOM_HALF_ALL_SOURCES = \ - $(shell find $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) -name \*.c) \ - $(LIBC_BOTTOM_HALF_LIBPREOPEN_DIR)/libpreopen.c \ - $(shell find $(LIBC_BOTTOM_HALF_SOURCES) -name \*.c) -LIBWASI_EMULATED_MMAN_SOURCES = \ - $(shell find $(LIBC_BOTTOM_HALF_DIR)/mman -name \*.c) -LIBC_BOTTOM_HALF_CRT_SOURCES = $(wildcard $(LIBC_BOTTOM_HALF_DIR)/crt/*.c) -LIBC_TOP_HALF_DIR = $(CURDIR)/libc-top-half -LIBC_TOP_HALF_MUSL_DIR = $(LIBC_TOP_HALF_DIR)/musl -LIBC_TOP_HALF_MUSL_SRC_DIR = $(LIBC_TOP_HALF_MUSL_DIR)/src -LIBC_TOP_HALF_MUSL_INC = $(LIBC_TOP_HALF_MUSL_DIR)/include -LIBC_TOP_HALF_MUSL_SOURCES = \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/a64l.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/basename.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/dirname.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/ffs.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/ffsl.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/ffsll.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/fmtmsg.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/getdomainname.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/gethostid.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/getopt.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/getopt_long.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/getsubopt.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/uname.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/misc/nftw.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/errno/strerror.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/htonl.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/htons.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/ntohl.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/ntohs.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/inet_ntop.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/inet_pton.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/inet_aton.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/in6addr_any.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/network/in6addr_loopback.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/fenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/fesetround.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/feupdateenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/fesetexceptflag.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/fegetexceptflag.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fenv/feholdexcept.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/exit/exit.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/exit/atexit.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/exit/assert.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/exit/quick_exit.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/exit/at_quick_exit.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/strftime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/asctime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/asctime_r.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/ctime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/ctime_r.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/wcsftime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/strptime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/difftime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/timegm.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/ftime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/gmtime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/gmtime_r.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/timespec_get.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/getdate.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/localtime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/localtime_r.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/mktime.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/__tm_to_secs.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/__month_to_secs.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/__secs_to_tm.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/__year_to_secs.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/time/__tz.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/fcntl/creat.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/dirent/alphasort.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/dirent/versionsort.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/env/clearenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/env/getenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/env/putenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/env/setenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/env/unsetenv.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/unistd/posix_close.c \ - $(filter-out %/procfdname.c %/syscall.c %/syscall_ret.c %/vdso.c %/version.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/*.c)) \ - $(filter-out %/flockfile.c %/funlockfile.c %/__lockfile.c %/ftrylockfile.c \ - %/rename.c \ - %/tmpnam.c %/tmpfile.c %/tempnam.c \ - %/popen.c %/pclose.c \ - %/remove.c \ - %/gets.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/*.c)) \ - $(filter-out %/strsignal.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/*.c)) \ - $(filter-out %/dcngettext.c %/textdomain.c %/bind_textdomain_codeset.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/locale/*.c)) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/search/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/multibyte/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/regex/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/prng/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/conf/*.c) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/ctype/*.c) \ - $(filter-out %/__signbit.c %/__signbitf.c %/__signbitl.c \ - %/__fpclassify.c %/__fpclassifyf.c %/__fpclassifyl.c \ - %/ceilf.c %/ceil.c \ - %/floorf.c %/floor.c \ - %/truncf.c %/trunc.c \ - %/rintf.c %/rint.c \ - %/nearbyintf.c %/nearbyint.c \ - %/sqrtf.c %/sqrt.c \ - %/fabsf.c %/fabs.c \ - %/copysignf.c %/copysign.c \ - %/fminf.c %/fmaxf.c \ - %/fmin.c %/fmax.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/math/*.c)) \ - $(filter-out %/crealf.c %/creal.c \ - %/cimagf.c %/cimag.c, \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/complex/*.c)) \ - $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/crypt/*.c) -MUSL_PRINTSCAN_SOURCES = \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/floatscan.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfprintf.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfwprintf.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfscanf.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/strtod.c \ - $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/wcstod.c -LIBC_TOP_HALF_HEADERS_PRIVATE = $(LIBC_TOP_HALF_DIR)/headers/private -LIBC_TOP_HALF_SOURCES = $(LIBC_TOP_HALF_DIR)/sources -LIBC_TOP_HALF_ALL_SOURCES = \ - $(LIBC_TOP_HALF_MUSL_SOURCES) \ - $(shell find $(LIBC_TOP_HALF_SOURCES) -name \*.c) - -# Set the target variables. Multiarch triples notably omit the vendor -# field, which happens to be what we do for the main target triple too. -TARGET_TRIPLE = wasm32-wasi -MULTIARCH_TRIPLE = wasm32-wasi - -# These variables describe the locations of various files and -# directories in the generated sysroot tree. -SYSROOT_LIB = $(SYSROOT)/lib/$(MULTIARCH_TRIPLE) -SYSROOT_INC = $(SYSROOT)/include -SYSROOT_SHARE = $(SYSROOT)/share/$(MULTIARCH_TRIPLE) - -# Set the target. -override WASM_CFLAGS += --target=$(TARGET_TRIPLE) -# WebAssembly floating-point match doesn't trap. -# TODO: Add -fno-signaling-nans when the compiler supports it. -override WASM_CFLAGS += -fno-trapping-math - -# Configure support for threads. -ifeq ($(THREAD_MODEL), single) -override WASM_CFLAGS += -mthread-model single -endif -ifeq ($(THREAD_MODEL), posix) -override WASM_CFLAGS += -mthread-model posix -pthread -endif - -# Set the sysroot. -override WASM_CFLAGS += --sysroot="$(SYSROOT)" - -objs = $(patsubst $(CURDIR)/%.c,$(OBJDIR)/%.o,$(1)) -override BASICS_OBJS = $(call objs,$(BASICS_SOURCES)) -override DLMALLOC_OBJS = $(call objs,$(DLMALLOC_SOURCES)) -override LIBC_BOTTOM_HALF_ALL_OBJS = $(call objs,$(LIBC_BOTTOM_HALF_ALL_SOURCES)) -override LIBC_TOP_HALF_ALL_OBJS = $(call objs,$(LIBC_TOP_HALF_ALL_SOURCES)) -override LIBC_OBJS := $(BASICS_OBJS) -ifeq ($(BUILD_DLMALLOC),yes) -override LIBC_OBJS += $(DLMALLOC_OBJS) -endif -ifeq ($(BUILD_LIBC_BOTTOM_HALF),yes) -# Override basics' string.o with libc-bottom-half's. -override LIBC_OBJS := $(filter-out %/string.o,$(LIBC_OBJS)) -# Add libc-bottom-half's objects. -override LIBC_OBJS += $(LIBC_BOTTOM_HALF_ALL_OBJS) -endif -ifeq ($(BUILD_LIBC_TOP_HALF),yes) -# Override libc-bottom-half's string.o with libc-top-half's. -override LIBC_OBJS := $(filter-out %/string.o,$(LIBC_OBJS)) -# Override libc-bottom-half's qsort.o with libc-top-half's. -override LIBC_OBJS := $(filter-out %/qsort.o,$(LIBC_OBJS)) -# libc-top-half is musl. -override LIBC_OBJS += $(LIBC_TOP_HALF_ALL_OBJS) -endif -override MUSL_PRINTSCAN_OBJS = $(call objs,$(MUSL_PRINTSCAN_SOURCES)) -override MUSL_PRINTSCAN_LONG_DOUBLE_OBJS = $(patsubst %.o,%.long-double.o,$(MUSL_PRINTSCAN_OBJS)) -override MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS = $(patsubst %.o,%.no-floating-point.o,$(MUSL_PRINTSCAN_OBJS)) -override LIBWASI_EMULATED_MMAN_OBJS = $(call objs,$(LIBWASI_EMULATED_MMAN_SOURCES)) - -# Files from musl's include directory that we don't want to install in the -# sysroot's include directory. -override MUSL_OMIT_HEADERS := - -# Remove files which aren't headers (we generate alltypes.h below). -override MUSL_OMIT_HEADERS += \ - "bits/syscall.h.in" \ - "bits/alltypes.h.in" \ - "alltypes.h.in" - -# Use the compiler's version of these headers. -override MUSL_OMIT_HEADERS += \ - "stdarg.h" \ - "stddef.h" - -# Use the WASI errno definitions. -override MUSL_OMIT_HEADERS += \ - "bits/errno.h" - -# Remove headers that aren't supported yet or that aren't relevant for WASI. -override MUSL_OMIT_HEADERS += \ - "sys/procfs.h" \ - "sys/user.h" \ - "sys/kd.h" "sys/vt.h" "sys/soundcard.h" "sys/sem.h" \ - "sys/shm.h" "sys/msg.h" "sys/ipc.h" "sys/ptrace.h" \ - "sys/statfs.h" \ - "bits/kd.h" "bits/vt.h" "bits/soundcard.h" "bits/sem.h" \ - "bits/shm.h" "bits/msg.h" "bits/ipc.h" "bits/ptrace.h" \ - "bits/statfs.h" \ - "sys/vfs.h" \ - "sys/statvfs.h" \ - "syslog.h" "sys/syslog.h" \ - "wait.h" "sys/wait.h" \ - "ucontext.h" "sys/ucontext.h" \ - "paths.h" \ - "utmp.h" "utmpx.h" \ - "lastlog.h" \ - "sys/acct.h" \ - "sys/cachectl.h" \ - "sys/epoll.h" "sys/reboot.h" "sys/swap.h" \ - "sys/sendfile.h" "sys/inotify.h" \ - "sys/quota.h" \ - "sys/klog.h" \ - "sys/fsuid.h" \ - "sys/io.h" \ - "sys/prctl.h" \ - "sys/mtio.h" \ - "sys/mount.h" \ - "sys/fanotify.h" \ - "sys/personality.h" \ - "elf.h" "link.h" "bits/link.h" \ - "scsi/scsi.h" "scsi/scsi_ioctl.h" "scsi/sg.h" \ - "sys/auxv.h" \ - "pwd.h" "shadow.h" "grp.h" \ - "mntent.h" \ - "netdb.h" \ - "resolv.h" \ - "pty.h" \ - "dlfcn.h" \ - "setjmp.h" \ - "ulimit.h" \ - "sys/xattr.h" \ - "wordexp.h" \ - "spawn.h" \ - "sys/membarrier.h" \ - "sys/signalfd.h" \ - "termios.h" \ - "sys/termios.h" \ - "bits/termios.h" \ - "net/if.h" \ - "net/if_arp.h" \ - "net/ethernet.h" \ - "net/route.h" \ - "netinet/if_ether.h" \ - "netinet/ether.h" \ - "sys/timerfd.h" \ - "libintl.h" \ - "sys/sysmacros.h" \ - "utime.h" - -ifeq ($(THREAD_MODEL), single) -# Remove headers not supported in single-threaded mode. -override MUSL_OMIT_HEADERS += "aio.h" "pthread.h" -endif - -default: check - -$(SYSROOT_LIB)/libc.a: $(LIBC_OBJS) - -$(SYSROOT_LIB)/libc-printscan-long-double.a: $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS) - -$(SYSROOT_LIB)/libc-printscan-no-floating-point.a: $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS) - -$(SYSROOT_LIB)/libwasi-emulated-mman.a: $(LIBWASI_EMULATED_MMAN_OBJS) - -%.a: - @mkdir -p "$(@D)" - # On Windows, the commandline for the ar invocation got too long, so it needs to be split up. - $(WASM_AR) crs $@ $(wordlist 1, 199, $^) - $(WASM_AR) crs $@ $(wordlist 200, 399, $^) - $(WASM_AR) crs $@ $(wordlist 400, 599, $^) - $(WASM_AR) crs $@ $(wordlist 600, 799, $^) - # This might eventually overflow again, but at least it'll do so in a loud way instead of - # silently dropping the tail. - $(WASM_AR) crs $@ $(wordlist 800, 100000, $^) - -$(MUSL_PRINTSCAN_OBJS): override WASM_CFLAGS += \ - -D__wasilibc_printscan_no_long_double \ - -D__wasilibc_printscan_full_support_option="\"add -lc-printscan-long-double to the link command\"" - -$(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS): override WASM_CFLAGS += \ - -D__wasilibc_printscan_no_floating_point \ - -D__wasilibc_printscan_floating_point_support_option="\"remove -lc-printscan-no-floating-point from the link command\"" - -$(OBJDIR)/%.long-double.o: $(CURDIR)/%.c include_dirs - @mkdir -p "$(@D)" - "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $< - -$(OBJDIR)/%.no-floating-point.o: $(CURDIR)/%.c include_dirs - @mkdir -p "$(@D)" - "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $< - -$(OBJDIR)/%.o: $(CURDIR)/%.c include_dirs - @mkdir -p "$(@D)" - "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $< - --include $(shell find $(OBJDIR) -name \*.d) - -$(DLMALLOC_OBJS): override WASM_CFLAGS += \ - -I$(DLMALLOC_INC) - -startup_files $(LIBC_BOTTOM_HALF_ALL_OBJS): override WASM_CFLAGS += \ - -I$(LIBC_BOTTOM_HALF_HEADERS_PRIVATE) \ - -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC) \ - -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) - -$(LIBC_TOP_HALF_ALL_OBJS) $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS) $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS): override WASM_CFLAGS += \ - -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \ - -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal \ - -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32 \ - -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/generic \ - -I$(LIBC_TOP_HALF_HEADERS_PRIVATE) \ - -Wno-parentheses \ - -Wno-shift-op-parentheses \ - -Wno-bitwise-op-parentheses \ - -Wno-logical-op-parentheses \ - -Wno-string-plus-int \ - -Wno-dangling-else \ - -Wno-unknown-pragmas - -include_dirs: - $(RM) -r "$(SYSROOT)" - - # - # Install the include files. - # - mkdir -p "$(SYSROOT_INC)" - cp -r "$(BASICS_INC)" "$(SYSROOT)" - cp -r "$(LIBC_BOTTOM_HALF_HEADERS_PUBLIC)"/* "$(SYSROOT_INC)" - - # Generate musl's bits/alltypes.h header. - mkdir -p "$(SYSROOT_INC)/bits" - sed -f $(LIBC_TOP_HALF_MUSL_DIR)/tools/mkalltypes.sed \ - $(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32/bits/alltypes.h.in \ - $(LIBC_TOP_HALF_MUSL_DIR)/include/alltypes.h.in \ - > "$(SYSROOT_INC)/bits/alltypes.h" - - # Copy in the bulk of musl's public header files. - cp -r "$(LIBC_TOP_HALF_MUSL_INC)"/* "$(SYSROOT_INC)" - # Copy in the musl's "bits" header files. - cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/generic/bits/* "$(SYSROOT_INC)/bits" - cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/wasm32/bits/* "$(SYSROOT_INC)/bits" - - # Remove selected header files. - $(RM) $(patsubst %,$(SYSROOT_INC)/%,$(MUSL_OMIT_HEADERS)) - -ifeq ($(BUILD_LIBC_BOTTOM_HALF),no) -override CRT_SOURCES = $(BASICS_CRT_SOURCES) -else -override CRT_SOURCES = $(LIBC_BOTTOM_HALF_CRT_SOURCES) -endif - -startup_files: include_dirs - # - # Build the startup files. - # - @mkdir -p "$(OBJDIR)" - cd "$(OBJDIR)" && \ - "$(WASM_CC)" $(WASM_CFLAGS) -c $(CRT_SOURCES) -MD -MP && \ - mkdir -p "$(SYSROOT_LIB)" && \ - mv *.o "$(SYSROOT_LIB)" - -libc: include_dirs \ - $(SYSROOT_LIB)/libc.a \ - $(SYSROOT_LIB)/libc-printscan-long-double.a \ - $(SYSROOT_LIB)/libc-printscan-no-floating-point.a \ - $(SYSROOT_LIB)/libwasi-emulated-mman.a - -finish: startup_files libc - # - # Create empty placeholder libraries. - # - for name in m rt pthread crypt util xnet resolv dl; do \ - $(WASM_AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \ - done - - # - # Collect metadata on the sysroot and perform sanity checks. - # - mkdir -p "$(SYSROOT_SHARE)" - - # Collect symbol information. - # TODO: Use llvm-nm --extern-only instead of grep. This is blocked on - # LLVM PR40497, which is fixed in 9.0, but not in 8.0. - # Ignore certain llvm builtin symbols such as those starting with __mul - # since these dependencies can vary between llvm versions. - "$(WASM_NM)" --defined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/*.o \ - |grep ' [[:upper:]] ' |sed 's/.* [[:upper:]] //' |LC_ALL=C sort > "$(SYSROOT_SHARE)/defined-symbols.txt" - for undef_sym in $$("$(WASM_NM)" --undefined-only "$(SYSROOT_LIB)"/*.a "$(SYSROOT_LIB)"/*.o \ - |grep ' U ' |sed 's/.* U //' |LC_ALL=C sort |uniq); do \ - grep -q '\<'$$undef_sym'\>' "$(SYSROOT_SHARE)/defined-symbols.txt" || echo $$undef_sym; \ - done | grep -v "^__mul" > "$(SYSROOT_SHARE)/undefined-symbols.txt" - grep '^_*wasi_' "$(SYSROOT_SHARE)/undefined-symbols.txt" \ - > "$(SYSROOT_LIB)/libc.imports" - - # Generate a test file that includes all public header files. - cd "$(SYSROOT)" && \ - for header in $$(find include -type f -not -name mman.h |grep -v /bits/); do \ - echo '#include <'$$header'>' | sed 's/include\///' ; \ - done |LC_ALL=C sort >share/$(MULTIARCH_TRIPLE)/include-all.c ; \ - cd - >/dev/null - - # Test that it compiles. - "$(WASM_CC)" $(WASM_CFLAGS) -fsyntax-only "$(SYSROOT_SHARE)/include-all.c" -Wno-\#warnings - - # Collect all the predefined macros, except for compiler version macros - # which we don't need to track here. For the __*_ATOMIC_*_LOCK_FREE - # macros, squash individual compiler names to attempt, toward keeping - # these files compiler-independent. - # - # We have to add `-isystem $(SYSROOT_INC)` because otherwise clang puts - # its builtin include path first, which produces compiler-specific - # output. - # - # TODO: Undefine __FLOAT128__ for now since it's not in clang 8.0. - # TODO: Filter out __FLT16_* for now, as not all versions of clang have these. - "$(WASM_CC)" $(WASM_CFLAGS) "$(SYSROOT_SHARE)/include-all.c" \ - -isystem $(SYSROOT_INC) \ - -E -dM -Wno-\#warnings \ - -D_ALL_SOURCE \ - -U__llvm__ \ - -U__clang__ \ - -U__clang_major__ \ - -U__clang_minor__ \ - -U__clang_patchlevel__ \ - -U__clang_version__ \ - -U__GNUC__ \ - -U__GNUC_MINOR__ \ - -U__GNUC_PATCHLEVEL__ \ - -U__VERSION__ \ - -U__FLOAT128__ \ - | sed -e 's/__[[:upper:][:digit:]]*_ATOMIC_\([[:upper:][:digit:]_]*\)_LOCK_FREE/__compiler_ATOMIC_\1_LOCK_FREE/' \ - | grep -v '^#define __FLT16_' \ - > "$(SYSROOT_SHARE)/predefined-macros.txt" - - # - # The build succeeded! The generated sysroot is in $(SYSROOT). - # - -check: finish - # Check that the computed metadata matches the expected metadata. - # This ignores whitespace because on Windows the output has CRLF line endings. - diff -wur "$(CURDIR)/expected/$(MULTIARCH_TRIPLE)" "$(SYSROOT_SHARE)" - -install: finish - mkdir -p "$(INSTALL_DIR)" - cp -r "$(SYSROOT)/lib" "$(SYSROOT)/share" "$(SYSROOT)/include" "$(INSTALL_DIR)" - -.PHONY: default startup_files libc finish check install include_dirs