rust/src/librustc_target
Alex Crichton bb9d3bea30 rustc: Allow the cdylib crate type with wasm32-wasi
The wasm32-wasi target respects configuration around `crt-static` in
general, but is defaulted to being static. This interacted badly with
code which validated the `cdylib` crate type for `wasm32-wasi`,
erroneously saying that the `cdylib` crate type wasn't supported on
`wasm32-wasi` by default. This commit sets the appropriate flag in
`wasm32_wasi`'s target specification to indicate that the `cdylib` crate
type is supported regardless of `crt-static`

Closes #64187
2019-09-05 11:55:20 -07:00
..
abi Handle cfg(bootstrap) throughout 2019-08-14 05:39:53 -04:00
spec rustc: Allow the cdylib crate type with wasm32-wasi 2019-09-05 11:55:20 -07:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml move store lib probing code to librustc_codegen_ssa 2019-08-08 18:25:47 +02:00
lib.rs Deny unused_lifetimes through rustbuild 2019-07-28 18:47:02 +03:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00

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.