table of contents
CARGO-RUSTC(1) | CARGO-RUSTC(1) |
NAME¶
cargo-rustc - Compile the current package, and pass extra options to the compilerSYNOPSIS¶
cargo rustc [OPTIONS] [-- ARGS]DESCRIPTION¶
The specified target for the current package (or package specified by -p if provided) will be compiled along with all of its dependencies. The specified ARGS will all be passed to the final compiler invocation, not any of the dependencies. Note that the compiler will still unconditionally receive arguments such as -L, --extern, and --crate-type, and the specified ARGS will simply be added to the compiler invocation.See <https://doc.rust-lang.org/rustc/index.html> for documentation on rustc flags.
This command requires that only one target is being compiled when additional arguments are provided. If more than one target is available for the current package the filters of --lib, --bin, etc, must be used to select which target is compiled. To pass flags to all compiler processes spawned by Cargo, use the RUSTFLAGS environment variable <https://doc.rust-lang.org/cargo/reference/environment-variables.html> or the build.rustflags config value <https://doc.rust-lang.org/cargo/reference/config.html>.
OPTIONS¶
Package Selection¶
By default, the package in the current working directory is selected. The -p flag can be used to choose a different package in a workspace.-p SPEC, --package SPEC
Target Selection¶
When no target selection options are given, cargo rustc will build all binary and library targets of the selected package.Passing target selection flags will build only the specified targets.
--lib
--bin NAME...
--bins
--example NAME...
--examples
--test NAME...
--tests
--bench NAME...
--benches
--all-targets
Feature Selection¶
When no feature options are given, the default feature is activated for every selected package.--features FEATURES
--all-features
--no-default-features
Compilation Options¶
--target TRIPLEThis may also be specified with the build.target config value <https://doc.rust-lang.org/cargo/reference/config.html>.
Note that specifying this flag makes Cargo run in a different mode where the target artifacts are placed in a separate directory. See the build cache <https://doc.rust-lang.org/cargo/guide/build-cache.html> documentation for more details.
--release
Output Options¶
--target-dir DIRECTORYDisplay Options¶
-v, --verbose-q, --quiet
--color WHEN
May also be specified with the term.color config value <https://doc.rust-lang.org/cargo/reference/config.html>.
--message-format FMT
Manifest Options¶
--manifest-path PATH--frozen, --locked
These may be used in environments where you want to assert that the Cargo.lock file is up-to-date (such as a CI build) or want to avoid network access.
--offline
Beware that this may result in different dependency resolution than online mode. Cargo will restrict itself to crates that are downloaded locally, even if there might be a newer version as indicated in the local copy of the index. See the cargo-fetch(1) command to download dependencies before going offline.
May also be specified with the net.offline config value <https://doc.rust-lang.org/cargo/reference/config.html>.
Common Options¶
-h, --help-Z FLAG...
Miscellaneous Options¶
-j N, --jobs NPROFILES¶
Profiles may be used to configure compiler options such as optimization levels and debug settings. See the reference <https://doc.rust-lang.org/cargo/reference/profiles.html> for more details.Profile selection depends on the target and crate being built. By default the dev or test profiles are used. If the --release flag is given, then the release or bench profiles are used.
Target | Default Profile | --release Profile |
lib, bin, example | dev | release |
test, bench, or any target in "test" or "bench" mode | test | bench |
Dependencies use the dev/release profiles.
ENVIRONMENT¶
See the reference <https://doc.rust-lang.org/cargo/reference/environment-variables.html> for details on environment variables that Cargo reads.EXIT STATUS¶
0101
EXAMPLES¶
cargo rustc --lib -- -D unsafe-code
cargo rustc --lib -- -Z print-type-sizes
SEE ALSO¶
cargo(1), cargo-build(1), rustc(1)2019-12-19 |