Jan Ph. H.
Jan Ph. H.
@kamidev I can't find the very exact open issue, only related ones - 1. https://github.com/llvm/llvm-project/issues/49538 - 2. ~~https://github.com/llvm/llvm-project/issues/47189 (not sure if thats the reason)~~ - 3. https://reviews.llvm.org/D116492 deprecation of llvm-config...
The CI fails on x86_64 zig test runner at ``` stage3/bin/zig build test-compare-output -fqemu -fwasmtime -Denable-llvm ``` ```txt + stage3/bin/zig build test-universal-libc -fqemu -fwasmtime -Denable-llvm warning: config.h could not be...
Note `--no-entry` is a wasm-specific option: https://github.com/llvm/llvm-project/blob/main/lld/docs/WebAssembly.rst#usage
Very nice writeup. Does this and if yes, how would this, affect C interop or semantics of translated C code? How are the result location semantics called in C/the C...
At least for me a default build of glibc contains `libc_nonshared.a`, but `src`glibc.zig` does not contain it in the library list: ```zig // The order of the elements in this...
On Arch its similar `cat /usr/lib/libc.so` ```txt /* GNU ld script Use the shared library, but some functions are only in the static library, so try that secondarily. */ OUTPUT_FORMAT(elf64-x86-64)...
1. I think `[|N|]` hurts readability, since `[|` are 2 nearly completely vertical characters. Depending on font and editor configuration, this is very bad to read. 2. Further this does...
Please explain what you tried from the instructions in the README.
> It basically suggests to deprecate fork and choose either posix_spawn() on any POSIX-compliant operating system or CreateProcess() on Windows. posix_spawn has the same class of issues: https://github.com/ziglang/zig/commit/22690efcc2378222503cb8aaad26a6f4a539f5aa, explained here...
@attila-kun Did you repeat the benchmark? If one wants to be pedantic, one needs to store 1. the LLVM version and 2. the zig code together and build LLVM from...