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
[package]
name = "test"version = "0.0.0"authors = []
[[lib]]
name = "test"
with src/test.rs empty.
If this is in a valid UTF-8 directory, then cargo build works flawlessly. If this is in an invalid UTF-8 directory (creatable by, e.g., mkdir $(echo -e '\xff') in Bash), then cargo build is rather upset:
Compiling test v0.0.0 (file:/home/huon/projects/test-rust/�)
error: could not write output: Error opening output file '/home/huon/projects/test-rust/�/target/test.o': No such file or directory
Could not execute process `rustc src/test.rs --crate-type lib --out-dir /home/huon/projects/test-rust/�/target -L /home/huon/projects/test-rust/�/target -L /home/huon/projects/test-rust/�/target/deps` (status=101)
The text was updated successfully, but these errors were encountered:
with
src/test.rs
empty.If this is in a valid UTF-8 directory, then
cargo build
works flawlessly. If this is in an invalid UTF-8 directory (creatable by, e.g.,mkdir $(echo -e '\xff')
in Bash), thencargo build
is rather upset:The text was updated successfully, but these errors were encountered: