AdamGoertz

Results 24 comments of AdamGoertz

Just adding a comment similar to my comment in #7295 supporting this proposal. Matrix operations are extremely important in robotics, so having support for them in the language is a...

I’m fully in favor of making it *possible* to use Zig without any LLVM components, but I agree with many of the comments here that it’s important for Zig to...

If no one else is working on this, I'd like to take a stab at it. I think there's plenty of room to get started on this without having to...

> > It would be best if paths were all relative to build.zig used in the zig build invocation without the ability to reference directories above it. > > This...

I agree that there definitely needs to be some changes made for improving the ergonomics of using hashes for monorepo style projects. For example, given the current implementation of #14603...

> Is this ready for review? Yes, I think so. Soliciting some more reviews was on my to-do list for this evening. Thanks for the reminder

Since the issues are so similar, I've also added an addOptions function to Module, which closes #14979.

Sounds good. I've been on work travel for most of the past few weeks, so I haven't had a chance to resolve conflicts. I'm back now, so just let me...

I agree that parsing relative paths inside std.Uri is a bit weird. It does make the subsequent logic a bit easier, since we don't need to handle a special case...

Paths are now a possible field for dependencies inside `build.zig.zon`. So the example above would now look like this: ```zig .{ .name = "base", .version = "0.0.0", .dependencies = .{...