rust/src/librustc_target
bors 6fc21e5576 Auto merge of #51936 - japaric:rust-lld, r=alexcrichton
rename rustc's lld to rust-lld

to not shadow the system installed LLD when linking with LLD.

Before:

- `-C linker=lld -Z linker-flavor=ld.lld` uses rustc's LLD
- It's not possible to use a system installed LLD that's named `lld`

With this commit:

- `-C linker=rust-lld -Z linker-flavor=ld.lld` uses rustc's LLD
- `-C linker=lld -Z linker-flavor=ld.lld` uses the system installed LLD

we don't offer guarantees about the availability of LLD in the rustc sysroot so we can rename the tool as long as we don't break the wasm32-unknown-unknown target which depends on it.

r? @alexcrichton we discussed this before
2018-07-05 06:44:16 +00:00
..
abi Inline all methods on `abi::Size` 2018-06-27 19:34:42 -04:00
spec rename rustc's lld to rust-lld 2018-06-29 22:20:00 -05:00
Cargo.toml rustc_target: move in syntax::abi and flip dependency. 2018-04-26 17:49:16 +03:00
README.md Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03:00
build.rs Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03:00
lib.rs Stabilise inclusive_range_methods 2018-05-17 20:58:28 +01:00

README.md

librustc_target contains some very low-level details that are specific to different compilation targets and so forth.

For more information about how rustc works, see the rustc guide.