Laytan
Laytan
`arc4random_buf` is implemented on Darwin, FreeBSD and OpenBSD with the same signature.
Ace editor recently got support for http://odin-lang.org/ in versions > 1.22 and I would like to use this frontend to debug Odin. Is it easy to update to a newer...
This makes all dynamic library dependencies bundle into `dist/libs`. Just like before, macos will complain that the binary (and now additionally the bundled libraries) aren't signed/trusted, and you need to...
## Context In my effort to update the CI to LLVM 17 (in https://github.com/odin-lang/Odin/pull/3124) I came across these test failures regarding the loading/parsing of PNG images. This one looks pretty...
## Context In my effort to update the CI to LLVM 17 (in #3124) I came across these test failures regarding f16 truncations. See the runner logs here: https://github.com/odin-lang/Odin/actions/runs/7996079532/job/21837831886?pr=3124
C varargs apply type promotions, `#c_varargs` currently doesn't. This PR implements the promotion rules by referencing this page: https://en.cppreference.com/w/c/language/conversion#Default_argument_promotions. There is a lot of text there, but I think these...
Follow up on the discussion in #158496 implementing the discussed resolution from that thread. All pre-compiled dependencies are first deleted and then built from source. This is my first time...
~~Very much still a draft~~, needs a bunch of testing on all the targets and on earlier version to make sure changes to support llvm 18 don't break older versions....
## Context While trying to verify #3308 by running all tests with optimisations turned on, I found this test failure that has been there for a while already. I couldn't...
## Context The buddy allocator deadlocks with the reproduction below. According to lldb it deadlocks in `mem.buddy_block_find_best` line 950 (the `for block < tail && buddy < tail { //...