• Denmark
  • Joined on 2025年11月28日
invlpg commented on issue ziglang/zig#35315 2026年05月15日 17:40:33 +02:00
std.math.acosh of large negative numbers does not return nan

Sorry, that should've been an @intCast. I've corrected it.

invlpg commented on issue ziglang/zig#35315 2026年05月15日 14:14:36 +02:00
std.math.acosh of large negative numbers does not return nan

As a fix, I'd suggest switching to an implementation based on FreeBSD. Something like this:

invlpg commented on issue ziglang/zig#35315 2026年05月15日 12:30:20 +02:00
std.math.acosh of large negative numbers does not return nan

The acosh implementation is a Zig port of the musl code. I downloaded a fresh cross toolchain from musl.cc (Note: it's community supported and not affiliated with the musl...

invlpg pushed to master at invlpg/zig 2026年04月10日 10:19:00 +02:00
addb638849 llvm: disable loop vectorization for now
ae88b0ffda priority queue and dequeue: use *const Self in read-only methods and fix deinit (#31712)
136541fc04 musl,wasi-libc: remove unused exp_data and pow_data
5be450d504 libc: remove duplicates of some functions
bd4ee18d47 test-libc: do not skip search_hsearch on wasi-libc
Compare 130 commits »
invlpg pushed to master at invlpg/zig 2026年03月21日 12:50:36 +01:00
bd349838d8 Zcu: correctly handle tid when main thread recurses
695e139c71 std.Io.Threaded: make mutexLock() use cmpxchgStrong instead of cmpxchgWeak
fded5d736d std.Progress: use cmpxchgStrong instead of cmpxchgWeak for locking/unlocking IPC
fae7d23362 Io.Uring: simplify openat error handling
770b39c476 std.Io.Uring: handle UnsupportedOperation for O_TMPFILE case
Compare 263 commits »
invlpg pushed to master at invlpg/zig 2026年03月02日 18:11:46 +01:00
924d22d1bf zig fetch: wait until all jobs are finished
a51f1eff5d tar: Fix symlink test when symlinks can't be created on Windows
dc788f4cfd std.math.big.int: address log2/log10 reviews
d0f5379038 Revert "ci: disable aarch64-freebsd"
90c53e0623 ci: disable aarch64-freebsd
Compare 8 commits »
invlpg created pull request ziglang/zig#31364 2026年02月28日 15:07:36 +01:00
fix msghdr and cmsghdr on non-Linux targets, document musl behaviour
invlpg pushed to master at invlpg/zig 2026年02月28日 15:02:02 +01:00
7ec8d0306c fix msghdr and cmsghdr on non-Linux targets, document musl behaviour
invlpg created repository invlpg/zig 2026年02月28日 14:59:59 +01:00
invlpg commented on issue ziglang/zig#31148 2026年02月13日 10:44:08 +01:00
Regression: Zig build with dependencies fails when local cache is on a different device

Reproduced on Alpine, x86_64. / is on ext4.

invlpg commented on issue ziglang/zig#30774 2026年01月11日 18:23:14 +01:00
pointer subtraction is not safety checked

But it is useful to be able to get a signed result, should this be allowed if there is a singed result type?