Laytan

Results 212 comments of Laytan

Sounds great @Feoramund , excited to see it!

> Some things I've noted when looking at `os2/file` API: > > 1. `create()` does not allow to set the permission bits or specify the behavior when the file exists...

Updated with the addition of #4954 🔥

That will have side effects we don't really want. I did this on purpose so the linker doesn't complain about every library you link with targeting a different version. The...

We do actually pass it to llvm I'm pretty sure to tell it to generate code for 11, and we have the `ODIN_MINIMUM_OS_VERSION` constant that's set, which some core stuff...

A related issue we currently have is with users that are on a macOS version under 11, they have to explicitly pass `-minimum-os-version:` when compiling currently. I already made a...

A problem with option 1 is that clang (and probably other tool chains) default to the current macOS version (like option 3), so a user just compiling their own library...

> Regarding odin.js, this might be a separate discussion but, would it make sense to modularize the webgl interface similar to how wgpu is handled? That way we can choose...

It should put it on the stack yes.

I believe you are just running into a stack overflow, like asan also reports. MacOS actually has a much smaller default thread size of 512KiB while other OSes are usually...