MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add required xz-static for debug header

+3 -3
+1 -1
.github/workflows/build-platform.yml
··· 82 82 run: | 83 83 apk add --no-cache git clang lld llvm meson ninja cmake pkgconf curl npm nodejs \ 84 84 musl-dev \ 85 - util-linux-dev util-linux-static linux-headers libunwind-dev libunwind-static \ 85 + util-linux-dev util-linux-static linux-headers libunwind-dev libunwind-static xz-static \ 86 86 py3-tomli tar xz zstd jq bash 87 87 git config --global --add safe.directory "$GITHUB_WORKSPACE" 88 88
+1 -1
BUILDING.md
··· 138 138 ```sh 139 139 apk add clang lld llvm meson ninja cmake pkgconf nodejs npm \ 140 140 musl-dev \ 141 - util-linux-dev util-linux-static linux-headers libunwind-dev libunwind-static 141 + util-linux-dev util-linux-static linux-headers libunwind-dev libunwind-static xz-static 142 142 ``` 143 143 144 144 You will also need Rust and Zig installed. The recommended approach:
+1 -1
meson/deps/meson.build
··· 52 52 endif 53 53 54 54 crash_deps = [] 55 - if host_machine.system() == 'linux' 55 + if host_machine.system() == 'linux' and not cc.has_header('execinfo.h') 56 56 libunwind_dep = dependency('libunwind', required: false, static: is_static) 57 57 if libunwind_dep.found() and cc.has_header('libunwind.h', dependencies: libunwind_dep) 58 58 crash_deps += [libunwind_dep]