Lee Cannon

Results 38 comments of Lee Cannon

I have been experiencing this issue with all zig projects since switching to stage2. @Techatrix found that if you don't use `.line = src.line` but instead hardcode it to `.line...

TLDR: tracy assumes the source location is static and it can read it at anytime, but we are passing a pointer to the stack I have done a bit of...

ZLS is also affected by this again. ![image](https://github.com/ziglang/zig/assets/2286349/b4f3f016-c170-49b2-a215-7733f17fad2d)

Zig is allowed to pass by reference as an optimization but if this results in different observable behaviour then it is a bug.

do you have the same issue with the latest stable zig release 0.10.1?

This type of functionality is useful for projects like https://github.com/SerenityOS/serenity. In that single project tree are ~60+ libraries and ~80+ applications all with dependencies on each other i.e. appA ->...

This is just me writing my thoughts down, anything im missing or you disagree with let me know and I will update it. # Strict Pros: - Simpler code -...

I agree with you, it was all well and good doing a little bit of comptime magic in `build_runner.zig` to support renamed types, slightly changed arguments and simple things like...

In order to go with the strict approach the vscode extension will need some way of downloading and choosing between different versions of ZLS.

Now that https://github.com/ziglang/vscode-zig/pull/138 is merged the main motivation of https://github.com/zigtools/zls/pull/1411 is gone (at least for vscode users). As we are providing specific versions of zls for specific versions of zig...