2014-10-09 12:41:23 -05:00
|
|
|
.TH RUSTC "1" "March 2014" "rustc 0.13.0" "User Commands"
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH NAME
|
2014-04-15 22:32:54 -05:00
|
|
|
rustc \- The Rust compiler
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH SYNOPSIS
|
2012-05-26 10:15:28 -05:00
|
|
|
.B rustc
|
2013-02-14 18:25:47 -06:00
|
|
|
[\fIOPTIONS\fR] \fIINPUT\fR
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH DESCRIPTION
|
|
|
|
This program is a compiler for the Rust language, available at
|
2012-01-12 21:10:30 -06:00
|
|
|
<\fBhttps://www.rust-lang.org\fR>.
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH OPTIONS
|
2012-05-26 10:15:28 -05:00
|
|
|
|
2014-07-10 14:57:04 -05:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-h\fR, \fB\-\-help\fR
|
|
|
|
Display the help message
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-\-cfg\fR SPEC
|
2012-01-30 21:02:20 -06:00
|
|
|
Configure the compilation environment
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2015-02-04 15:47:06 -06:00
|
|
|
\fB\-L\fR [KIND=]PATH
|
|
|
|
Add a directory to the library search path. The optional KIND can be one of:
|
|
|
|
dependency = only lookup transitive dependencies here
|
|
|
|
crate = only lookup local `extern crate` directives here
|
|
|
|
native = only lookup native libraries here
|
|
|
|
framework = only look for OSX frameworks here
|
|
|
|
all = look for anything here (the default)
|
|
|
|
.TP
|
|
|
|
\fB\-l\fR [KIND=]NAME
|
2014-12-22 04:32:29 -06:00
|
|
|
Link the generated crate(s) to the specified native library NAME. The optional
|
|
|
|
KIND can be one of, static, dylib, or framework. If omitted, dylib is assumed.
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-\-crate-type\fR [bin|lib|rlib|dylib|staticlib]
|
|
|
|
Comma separated list of types of crates for the compiler to emit
|
2014-04-15 22:32:54 -05:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-\-crate-name NAME\fR
|
|
|
|
Specify the name of the crate being built
|
2014-02-06 21:57:09 -06:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-\-emit\fR [asm|llvm-bc|llvm-ir|obj|link|dep-info]
|
|
|
|
Configure the output that rustc will produce
|
|
|
|
.TP
|
2015-01-01 22:50:14 -06:00
|
|
|
\fB\-\-print\fR [crate-name|file-names|sysroot]
|
2014-12-22 04:32:29 -06:00
|
|
|
Comma separated list of compiler information to print on stdout
|
|
|
|
.TP
|
|
|
|
\fB\-g\fR
|
|
|
|
Equivalent to \fI\-C\fR debuginfo=2
|
2014-04-15 22:32:54 -05:00
|
|
|
.TP
|
2012-05-26 10:15:28 -05:00
|
|
|
\fB\-O\fR
|
2014-12-22 04:32:29 -06:00
|
|
|
Equivalent to \fI\-C\fR opt-level=2
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-o\fR FILENAME
|
2014-12-22 04:32:29 -06:00
|
|
|
Write output to <filename>. Ignored if multiple \fI\-\-emit\fR outputs are
|
|
|
|
specified.
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-\-out\-dir\fR DIR
|
2014-12-22 04:32:29 -06:00
|
|
|
Write output to compiler-chosen filename in <dir>. Ignored if \fI\-o\fR is
|
|
|
|
specified. Defaults to the current directory.
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-\-explain\fR OPT
|
|
|
|
Provide a detailed explanation of an error message
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2012-05-26 10:15:28 -05:00
|
|
|
\fB\-\-test\fR
|
|
|
|
Build a test harness
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-\-target\fR TRIPLE
|
2014-12-22 04:32:29 -06:00
|
|
|
Target triple cpu-manufacturer-kernel[-os] to compile for (see chapter 3.4 of
|
|
|
|
http://www.sourceware.org/autobook/ for details)
|
2012-10-10 17:29:01 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-W\fR help
|
2012-10-10 18:35:52 -05:00
|
|
|
Print 'lint' options and default settings
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-W\fR OPT, \fB\-\-warn\fR OPT
|
|
|
|
Set lint warnings
|
|
|
|
.TP
|
|
|
|
\fB\-A\fR OPT, \fB\-\-allow\fR OPT
|
|
|
|
Set lint allowed
|
2011-10-25 22:05:41 -05:00
|
|
|
.TP
|
2013-02-14 18:25:47 -06:00
|
|
|
\fB\-D\fR OPT, \fB\-\-deny\fR OPT
|
|
|
|
Set lint denied
|
|
|
|
.TP
|
|
|
|
\fB\-F\fR OPT, \fB\-\-forbid\fR OPT
|
|
|
|
Set lint forbidden
|
|
|
|
.TP
|
2014-02-06 21:57:09 -06:00
|
|
|
\fB\-C\fR FLAG[=VAL], \fB\-\-codegen\fR FLAG[=VAL]
|
2014-05-12 17:49:39 -05:00
|
|
|
Set a codegen-related flag to the value specified. Use "-C help" to print
|
2014-02-06 21:57:09 -06:00
|
|
|
available flags. See CODEGEN OPTIONS below
|
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fB\-V\fR, \fB\-\-version\fR
|
2012-05-26 10:15:28 -05:00
|
|
|
Print version info and exit
|
2014-12-22 04:32:29 -06:00
|
|
|
.TP
|
|
|
|
\fB\-v\fR, \fB\-\-verbose\fR
|
|
|
|
Use verbose output
|
|
|
|
.TP
|
|
|
|
\fB\-\-extern\fR NAME=PATH
|
|
|
|
Specify where an external rust library is located
|
|
|
|
.TP
|
|
|
|
\fB\-\-sysroot\fR PATH
|
|
|
|
Override the system root
|
|
|
|
.TP
|
|
|
|
\fB\-Z\fR FLAG
|
|
|
|
Set internal debugging options. Use "-Z help" to print available options.
|
|
|
|
.TP
|
|
|
|
\fB\-\-color\fR auto|always|never
|
|
|
|
Configure coloring of output:
|
|
|
|
auto = colorize, if output goes to a tty (default);
|
|
|
|
always = always colorize output;
|
|
|
|
never = never colorize output
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2014-02-06 21:57:09 -06:00
|
|
|
.SH CODEGEN OPTIONS
|
|
|
|
|
|
|
|
.TP
|
|
|
|
\fBar\fR=/path/to/ar
|
|
|
|
Path to the archive utility to use when assembling archives.
|
|
|
|
.TP
|
|
|
|
\fBlinker\fR=/path/to/cc
|
|
|
|
Path to the linker utility to use when linking libraries, executables, and
|
|
|
|
objects.
|
|
|
|
.TP
|
|
|
|
\fBlink-args\fR='-flag1 -flag2'
|
|
|
|
A space-separated list of extra arguments to pass to the linker when the linker
|
|
|
|
is invoked.
|
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fBlto\fR
|
|
|
|
Perform LLVM link-time optimizations.
|
|
|
|
.TP
|
2014-02-06 21:57:09 -06:00
|
|
|
\fBtarget-cpu\fR=help
|
|
|
|
Selects a target processor. If the value is 'help', then a list of available
|
2014-05-12 17:49:39 -05:00
|
|
|
CPUs is printed.
|
2014-02-06 21:57:09 -06:00
|
|
|
.TP
|
2014-10-05 05:59:14 -05:00
|
|
|
\fBtarget-feature\fR='+feature1,-feature2'
|
|
|
|
A comma-separated list of features to enable or disable for the target. A
|
2014-02-06 21:57:09 -06:00
|
|
|
preceding '+' enables a feature while a preceding '-' disables it. Available
|
|
|
|
features can be discovered through target-cpu=help.
|
|
|
|
.TP
|
|
|
|
\fBpasses\fR=list
|
|
|
|
A space-separated list of extra LLVM passes to run. A value of 'list' will
|
|
|
|
cause rustc to print all known passes and exit. The passes specified are
|
|
|
|
appended at the end of the normal pass manager.
|
|
|
|
.TP
|
|
|
|
\fBllvm-args\fR='-arg1 -arg2'
|
2014-05-12 17:49:39 -05:00
|
|
|
A space-separated list of arguments to pass through to LLVM.
|
2014-02-06 21:57:09 -06:00
|
|
|
.TP
|
|
|
|
\fBsave-temps\fR
|
|
|
|
If specified, the compiler will save more files (.bc, .o, .no-opt.bc) generated
|
|
|
|
throughout compilation in the output directory.
|
|
|
|
.TP
|
2014-06-11 16:52:38 -05:00
|
|
|
\fBrpath\fR
|
|
|
|
If specified, then the rpath value for dynamic libraries will be set in
|
2014-02-06 21:57:09 -06:00
|
|
|
either dynamic library or executable outputs.
|
|
|
|
.TP
|
|
|
|
\fBno-prepopulate-passes\fR
|
|
|
|
Suppresses pre-population of the LLVM pass manager that is run over the module.
|
|
|
|
.TP
|
|
|
|
\fBno-vectorize-loops\fR
|
|
|
|
Suppresses running the loop vectorization LLVM pass, regardless of optimization
|
|
|
|
level.
|
|
|
|
.TP
|
|
|
|
\fBno-vectorize-slp\fR
|
|
|
|
Suppresses running the LLVM SLP vectorization pass, regardless of optimization
|
|
|
|
level.
|
|
|
|
.TP
|
|
|
|
\fBsoft-float\fR
|
|
|
|
Generates software floating point library calls instead of hardware
|
|
|
|
instructions.
|
|
|
|
.TP
|
|
|
|
\fBprefer-dynamic\fR
|
|
|
|
Prefers dynamic linking to static linking.
|
|
|
|
.TP
|
|
|
|
\fBno-integrated-as\fR
|
|
|
|
Force usage of an external assembler rather than LLVM's integrated one.
|
2014-04-15 22:32:54 -05:00
|
|
|
.TP
|
2014-12-22 04:32:29 -06:00
|
|
|
\fBno-redzone\fR
|
|
|
|
Disable the use of the redzone.
|
|
|
|
.TP
|
2014-04-15 22:32:54 -05:00
|
|
|
\fBrelocation-model\fR=[pic,static,dynamic-no-pic]
|
2014-12-22 04:32:29 -06:00
|
|
|
The relocation model to use. (Default: pic)
|
|
|
|
.TP
|
|
|
|
\fBcode-model\fR=[small,kernel,medium,large]
|
|
|
|
Choose the code model to use.
|
|
|
|
.TP
|
|
|
|
\fBmetadata\fR=val
|
|
|
|
Metadata to mangle symbol names with.
|
|
|
|
.TP
|
|
|
|
\fBextra-filename\fR=val
|
|
|
|
Extra data to put in each output filename.
|
|
|
|
.TP
|
|
|
|
\fBcodegen-units\fR=val
|
|
|
|
Divide crate into N units to optimize in parallel.
|
|
|
|
.TP
|
|
|
|
\fBremark\fR=val
|
|
|
|
Print remarks for these optimization passes (space separated, or "all").
|
|
|
|
.TP
|
|
|
|
\fBno-stack-check\fR
|
|
|
|
Disable checks for stack exhaustion (a memory-safety hazard!).
|
|
|
|
.TP
|
|
|
|
\fBdebuginfo\fR=val
|
|
|
|
Debug info emission level:
|
|
|
|
0 = no debug info;
|
|
|
|
1 = line-tables only (for stacktraces and breakpoints);
|
|
|
|
2 = full debug info with variable and type information.
|
|
|
|
.TP
|
|
|
|
\fBopt-level\fR=val
|
|
|
|
Optimize with possible levels 0-3
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2012-01-30 21:02:20 -06:00
|
|
|
.SH "EXAMPLES"
|
|
|
|
To build an executable from a source file with a main function:
|
|
|
|
$ rustc -o hello hello.rs
|
|
|
|
|
|
|
|
To build a library from a source file:
|
Redesign output flags for rustc
This commit removes the -c, --emit-llvm, -s, --rlib, --dylib, --staticlib,
--lib, and --bin flags from rustc, adding the following flags:
* --emit=[asm,ir,bc,obj,link]
* --crate-type=[dylib,rlib,staticlib,bin,lib]
The -o option has also been redefined to be used for *all* flavors of outputs.
This means that we no longer ignore it for libraries. The --out-dir remains the
same as before.
The new logic for files that rustc emits is as follows:
1. Output types are dictated by the --emit flag. The default value is
--emit=link, and this option can be passed multiple times and have all
options stacked on one another.
2. Crate types are dictated by the --crate-type flag and the #[crate_type]
attribute. The flags can be passed many times and stack with the crate
attribute.
3. If the -o flag is specified, and only one output type is specified, the
output will be emitted at this location. If more than one output type is
specified, then the filename of -o is ignored, and all output goes in the
directory that -o specifies. The -o option always ignores the --out-dir
option.
4. If the --out-dir flag is specified, all output goes in this directory.
5. If -o and --out-dir are both not present, all output goes in the current
directory of the process.
6. When multiple output types are specified, the filestem of all output is the
same as the name of the CrateId (derived from a crate attribute or from the
filestem of the crate file).
Closes #7791
Closes #11056
Closes #11667
2014-02-03 17:27:54 -06:00
|
|
|
$ rustc --crate-type=lib hello-lib.rs
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2014-01-22 19:36:08 -06:00
|
|
|
To build either with a crate (.rs) file:
|
|
|
|
$ rustc hello.rs
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2014-02-06 21:57:09 -06:00
|
|
|
To build an executable with debug info:
|
|
|
|
$ rustc -g -o hello hello.rs
|
2013-02-14 18:25:47 -06:00
|
|
|
|
2013-07-06 23:06:54 -05:00
|
|
|
.SH "SEE ALSO"
|
|
|
|
|
2014-02-02 01:56:55 -06:00
|
|
|
rustdoc
|
2013-02-14 18:25:47 -06:00
|
|
|
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH "BUGS"
|
2014-06-16 18:07:34 -05:00
|
|
|
See <\fBhttps://github.com/rust-lang/rust/issues\fR> for issues.
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH "AUTHOR"
|
2014-04-14 16:55:40 -05:00
|
|
|
See \fBAUTHORS.txt\fR in the Rust source distribution.
|
2012-01-30 21:02:20 -06:00
|
|
|
|
2011-10-25 22:05:41 -05:00
|
|
|
.SH "COPYRIGHT"
|
2013-04-08 03:19:16 -05:00
|
|
|
This work is dual-licensed under Apache 2.0 and MIT terms. See \fBCOPYRIGHT\fR
|
|
|
|
file in the rust source distribution.
|