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
{{ message }}
This repository was archived by the owner on Mar 4, 2026. It is now read-only.
Finished dev [optimized + debuginfo] target(s) in 0.03s
Running Post Build Script at /home/mathias/git/blackbird/factbird-mini/factbird-rs/post_build.rs
Compiling post-build-script v0.1.0 (/home/mathias/git/blackbird/factbird-mini/target/post_build_script_manifest)
error[E0463]: can't find crate for `std`
|
= note: the `thumbv7em-none-eabihf` target may not be installed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0463`.
error: could not compile `post-build-script`
To learn more, run the command again with --verbose.
I can't quite figure out if this is actually the same as #2 ?
As i see it, the post_build script should always be run using the host target, and never be influenced by .config/cargo target?
If
.config/cargocontains a build target wherestdis not available, post-build will fail, as it tries to compile post-build for said target..cargo/config:post_build.rs:cargo post build -p factbird-rs:I can't quite figure out if this is actually the same as #2 ?
As i see it, the post_build script should always be run using the host target, and never be influenced by
.config/cargotarget?