blob: a1784617ae9139a325a61510ea799a2690d3ccda [file] [log] [blame] [view]
# cargo-build(1)
{{~*set command="build"}}
{{~*set actionverb="Build"}}
{{~*set multitarget=true}}
## NAME
cargo-build --- Compile the current package
## SYNOPSIS
`cargo build` [_options_]
## DESCRIPTION
Compile local packages and all of their dependencies.
## OPTIONS
{{> section-package-selection }}
### Target Selection
When no target selection options are given, `cargo build` will build all
binary and library targets of the selected packages. Binaries are skipped if
they have `required-features` that are missing.
{{> options-targets-bin-auto-built }}
{{> options-targets }}
{{> section-features }}
### Compilation Options
{{#options}}
{{> options-target-triple }}
{{> options-release }}
{{> options-profile }}
{{> options-timings }}
{{/options}}
### Output Options
{{#options}}
{{> options-target-dir }}
{{#option "`--artifact-dir` _directory_" }}
Copy final artifacts to this directory.
This option is unstable and available only on the
[nightly channel](https://doc.rust-lang.org/book/appendix-07-nightly-rust.html)
and requires the `-Z unstable-options` flag to enable.
See <https://github.com/rust-lang/cargo/issues/6790> for more information.
{{/option}}
{{/options}}
### Display Options
{{#options}}
{{> options-display }}
{{> options-message-format }}
{{/options}}
### Manifest Options
{{#options}}
{{> options-manifest-path }}
{{> options-ignore-rust-version }}
{{> options-locked }}
{{> options-lockfile-path }}
{{/options}}
{{> section-options-common }}
### Miscellaneous Options
{{#options}}
{{> options-jobs }}
{{> options-keep-going }}
{{> options-future-incompat }}
{{/options}}
{{> section-environment }}
{{> section-exit-status }}
## EXAMPLES
1. Build the local package and all of its dependencies:
cargo build
2. Build with optimizations:
cargo build --release
## SEE ALSO
{{man "cargo" 1}}, {{man "cargo-rustc" 1}}