Ethan Steere
Ethan Steere
Quick Fix! I'm on zig 0.11. ```zig if (optimize == .ReleaseFast and builtin.target.os.tag == .windows) { // LTO breaks build of libcpp on windows in ReleastFast exe.want_lto = false; }...
Would love to see it and contribute!
A `.wasm` file will declare a bunch of functions it needs to execute properly. WASI and WASIX are standard sets of such functions. A pure WASI/WASIX web assembly program can...
I couldn't get Postgres to build with `-sMAIN_MODULE=1`. It complained about missing `_malloc`, which is odd given that `MAIN_MODULE=1` exports all symbols. Maybe you have some idea of why that...
The internal function can branch to a fallback if non-ascii characters are present. The public call signature is the same as `find` / `find_byte`. ```c SZ_INTERNAL __m512i sz_lower_avx512(__m512i in) {...