We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I read the doc too fast and didn't see I had to put my sources in src/, so I put them at the root of my dir: it resulted on weird errors.
src/
With nothing else in the directory, this Cargo.toml file resuts in a subcommand failed with signal: 11 error:
Cargo.toml
subcommand failed with signal: 11
[package] name = "test"
This one results in a subcommand failed with signal: 10 error:
subcommand failed with signal: 10
[package] name = "test" version = "0.0.1"
For this last tests, I tried to add the [[bin]] section and a main.rs file, same error (subcommand failed with signal: 10):
[[bin]]
main.rs
[package] name = "test" version = "0.0.1" [[bin]] main = "main.rs"
Just in case:
% sw_vers -productVersion 10.9.4 % cargo --version cargo-nightly 0.1.0-pre (3e5ba33 2014-07-29 00:14:32 +0000) % rustc --version rustc 0.12.0-pre-nightly (b2bd99860 2014-07-28 22:36:39 +0000)
ps: it works like a charm since I put main.rs into src/ and removed the [[bin]] section :-)
The text was updated successfully, but these errors were encountered:
Closing, this is sadly a dupe of rust-lang/rust#15763 (also discovered in #261)
Sorry, something went wrong.
No branches or pull requests
I read the doc too fast and didn't see I had to put my sources in
src/
, so I put them at the root of my dir: it resulted on weird errors.With nothing else in the directory, this
Cargo.toml
file resuts in asubcommand failed with signal: 11
error:This one results in a
subcommand failed with signal: 10
error:For this last tests, I tried to add the
[[bin]]
section and amain.rs
file, same error (subcommand failed with signal: 10
):Just in case:
ps: it works like a charm since I put
main.rs
intosrc/
and removed the[[bin]]
section :-)The text was updated successfully, but these errors were encountered: