We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
as mentioned in #289 (comment), one should create an issue to cargo with a minimal reproducer
about
RUSTFLAGS="-Awarnings" cargo build --target wasm32-unknown-unknown
resulting in a cryptic error, while rustc actually runs the command suggested as reason of failure without errors
rustc
cat src/lib.rs | rustc - --crate-name ___ --print=file-names -Awarnings --target wasm32-unknown-unknown --crate-type bin --crate-type rlib --crate-type dylib --crate-type cdylib --crate-type staticlib --crate-type proc-macro --print=sysroot --print=split-debuginfo --print=crate-name --print=cfg
The text was updated successfully, but these errors were encountered:
CARGO_ENCODED_RUSTFLAGS="-Awarnings" cargo build --target wasm32-unknown-unknown is similar error
CARGO_ENCODED_RUSTFLAGS="-Awarnings" cargo build --target wasm32-unknown-unknown
both of
RUSTFLAGS="-Awarnings" cargo build CARGO_ENCODED_RUSTFLAGS="-Awarnings" cargo build
are fine
Sorry, something went wrong.
error: output of --print=file-names missing when learning about target-specific information from rustc
No branches or pull requests
as mentioned in #289 (comment), one should create an issue to cargo with a minimal reproducer
about
RUSTFLAGS="-Awarnings" cargo build --target wasm32-unknown-unknown
resulting in a cryptic error, while
rustc
actually runs the command suggested as reason of failure without errorscat src/lib.rs | rustc - --crate-name ___ --print=file-names -Awarnings --target wasm32-unknown-unknown --crate-type bin --crate-type rlib --crate-type dylib --crate-type cdylib --crate-type staticlib --crate-type proc-macro --print=sysroot --print=split-debuginfo --print=crate-name --print=cfg
The text was updated successfully, but these errors were encountered: