You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> mold --version
mold 2.34.1 (de65f6bd75b93eeb9f3775fc136ee79683ff35f1; compatible with GNU ld)
When I comment out the rustflags line there (i.e. the default linker is picked) the build does succeed. When I explicitly pick ld.lld from the llvm that I'm using that also works (you still need the linker = "clang" bit of config for this):
Not a huge problem, and maybe even a limitation in mold, but it does add a bit of friction and might indicate an issue somewhere in the c2rust build pipeline?
The text was updated successfully, but these errors were encountered:
A particular version? And there isn't some sneaky .cargo/config.toml overriding it? (any rustflags anywhere will override that global toml config I believe)
I get a linker error when trying to build c2rust using mold. I've configured the mold linker as my default because it is much faster.
Mold is configured like so
and is the latest version
When I comment out the rustflags line there (i.e. the default linker is picked) the build does succeed. When I explicitly pick
ld.lld
from the llvm that I'm using that also works (you still need thelinker = "clang"
bit of config for this):Not a huge problem, and maybe even a limitation in mold, but it does add a bit of friction and might indicate an issue somewhere in the c2rust build pipeline?
The text was updated successfully, but these errors were encountered: