Laurenz
Laurenz
Not needed anymore for the Bzlmod PR
Also running into this. ``` ... bazel_dep(name = "rules_rust", version = "0.49.3") rust = use_extension("@rules_rust//rust:extensions.bzl", "rust") rust.toolchain( edition = "2021", versions = ["1.80.0"], extra_target_triples = [ "aarch64-unknown-linux-musl", "x86_64-unknown-linux-musl", ], )...
I applied the `rust/extensions.bzl` and `rust/repositories.bzl` patches from https://github.com/bazelbuild/rules_rust/pull/2731 and that seems to make the build work... more? I'm hitting `can't find crate for darling_macro` / `can't find crate for...
No, haven't spent more time on this yet. https://github.com/lalten/appimage-runtime-rs/pull/1/files#diff-60f2adc63ebe456fa295d210df6799e7e2b84ec138d2cf7e57cd8228604211fd is the patch I apply to rules_rust and https://github.com/lalten/appimage-runtime-rs/actions/runs/10412005304/job/28836954109?pr=1 shows the error about not finding crates
What matters for that project is that it builds on GitHub Actions hosted ubuntu-latest (i.e. x86_64) runners. I need musl to be able to compile "truly static" binaries I'd be...
Thanks for the PR @illicitonion. It looks like the problem is still not solved in https://github.com/lalten/appimage-runtime-rs/pull/1 with current rules_rust main. It's still failing with `undefined reference to 'gnu_get_libc_version'` even though...
@jwnrt any chance you could pick this up again? Seems like this would fix https://github.com/bazelbuild/rules_rust/issues/2787
I added a failing test in https://github.com/mvukov/rules_ros2/pull/446/commits/ca7da17e6b480bf79fdf24614f4afcc5475e7f87: https://github.com/mvukov/rules_ros2/actions/runs/13606301154/job/38038169533?pr=446#step:5:61 and fixed it by using `../` instead of `$(rootpath` in https://github.com/mvukov/rules_ros2/pull/446/commits/00f4065ceb624c82f1eb1519dc46f52af99b804c
> Would `--nolegacy_external_runfiles` help in the first place (mentioned in #65 )? (that is a recommended flag, we should have it in .bazelrc eventually) . With that flag I think...
> Just curious: is this patched in the official repo as well? There is indeed something similar in https://github.com/ros2/rosbag2/commit/4882d30fc2d1e5b9305e5d46b8460466f9280d27 but that's not backported to Humble. The patch in this PR...