Andreas Herrmann

Results 103 issues of Andreas Herrmann

Zig has two different ways to link against pre-built objects or libraries. Either, by [passing the corresponding files on the command-line](https://github.com/ziglang/zig/blob/0.10.1/src/main.zig#L1346-L1348), in which case they are passed as file paths...

This may not require any additional implementation. Just a test case that wraps a `cc_shared_library` in a `cc_library` target.

See https://github.com/aherrmann/rules_zig/issues/161#issuecomment-1872501510. Zig links against its own libc. However, this is configurable. You can either select one of the builtin libc's by adjusting the ABI part of the target triple...

This requires a configuration transition for the target platform and the relevant build settings. For reference, [rules_go uses a transition](https://github.com/bazelbuild/rules_go/pull/3116) that is applied to all target dependency attributes and the...