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
Commenting out lto = true results in a successful link and run.
If this isn't an easy fix perhaps cargo fuzz could pass --config profile.release.lto=false to cargo? Alternatively being able to choose a custom profile (not just release vs dev) might be a useful feature in its own right.
Reproduced with
rustc 1.83.0-nightly (9c01301c5 2024-09-05)
and
rustc 1.83.0-nightly (c52c23b6f 2024-09-16)
The text was updated successfully, but these errors were encountered:
If this isn't an easy fix perhaps cargo fuzz could pass --config profile.release.lto=false to cargo? Alternatively being able to choose a custom profile (not just release vs dev) might be a useful feature in its own right.
I'd be happy to review PRs for both of these things.
ijc
added a commit
to ijc/cargo-fuzz
that referenced
this issue
Sep 18, 2024
With:
in my workspace
Cargo.toml
runningcargo fuzz run «target»
fails to link with:(there are dozens of these).
Commenting out
lto = true
results in a successful link and run.If this isn't an easy fix perhaps
cargo fuzz
could pass--config profile.release.lto=false
tocargo
? Alternatively being able to choose a custom profile (not justrelease
vsdev
) might be a useful feature in its own right.Reproduced with
and
The text was updated successfully, but these errors were encountered: