]> git.lizzy.rs Git - rust.git/commit
auto merge of #12020 : alexcrichton/rust/output-flags, r=brson
authorbors <bors@rust-lang.org>
Thu, 6 Feb 2014 20:41:30 +0000 (12:41 -0800)
committerbors <bors@rust-lang.org>
Thu, 6 Feb 2014 20:41:30 +0000 (12:41 -0800)
commitc13a929d58c3f866687ccf12cc33b2b59a2e10b8
tree5a37f2b5ab2e0e7e25d458f6456fda93ac713264
parent680925e258411f817ffa2ff963708ee0a0da1784
parent6e7968b10a32cbef810dcb9e3d5bc736dbf61d1f
auto merge of #12020 : alexcrichton/rust/output-flags, r=brson

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 directory of
   the crate file.
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
mk/crates.mk
src/librustc/driver/driver.rs
src/librustc/lib.rs
src/librustdoc/test.rs