Results 812 comments of Andre Weissflog

Wow interesting! I don't know yet whether I will merge before new year because I'm currently back in retro-land and I want to take time to test the bindings (which...

PS: please ignore the CI pipeline errors for now, the Emscripten error is caused by a Clang update (they have a new warning), and the error in the gen-bindings job...

Is it a good time for me to start looking into the PR already, or should I wait a bit (and pick another topic in the meantime)?

Hmm, testing on my M1 Mac with ldc2 I'm seeing a couple of weird issues: Warnings like this: ``` 'apple_a14' is not a recognized processor for this target (ignoring processor)...

> What flags were used? Hmm, I was just running `zig build clear` etc... and then started `zig-out/bin/clear`. If you haven't tested macOS so far then it's not all that...

Ok, I'll start looking into this again now.

Did you get debugging to work somewhow? I'm trying this extension on macOS: https://marketplace.visualstudio.com/items?itemName=webfreak.code-d, and while it starts the debuggee, it doesn't stop on breakpoints. (I'm using the ldc debugger...

On Linux I'm getting tons of errors like this: ``` /home/floh/projects/sokol/bindgen/sokol-d/src/sokol/gfx.d(1813,30): Error: function `sokol/home/floh/projects/sokol/bindgen/sokol-d/src/sokol/gfx.d(1813,30): Error: function `sokol.gfx.sg_d3d11_device` functions cannot be `scope` .gfx.extern(C) scope const(void)* sg_d3d11_device() @system @nogc nothrow; ``` ...with...

...on Ubuntu with ldc2 version 1.30.0, if I remove the `scope` attribute from functions, the samples compile (with a couple of warnings about GC and thread-local variables), but there are...

Quick update: I can get debugging to work with the CodeLLDB extension in VSCode if I remove this option from the build.zig: ```zig // remove object files after success build,...