rust/src/librustc_target
Alex Crichton d3939322e3 rustc: Clean up allocator injection logic
This commit cleans up allocator injection logic found in the compiler
around selecting the global allocator. It turns out that now that
jemalloc is gone the compiler never actually injects anything! This
means that basically everything around loading crates here and there can
be easily pruned.

This also removes the `exe_allocation_crate` option from custom target
specs as it's no longer used by the compiler anywhere.
2018-11-11 09:22:28 -08:00
..
abi Support for the program data address space option 2018-11-08 17:46:30 +01:00
spec rustc: Clean up allocator injection logic 2018-11-11 09:22:28 -08:00
build.rs Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03:00
Cargo.toml Remove all jemalloc-related content 2018-11-02 06:52:56 -07:00
lib.rs Bump nightly to 1.32.0 2018-10-31 11:53:50 -07:00
README.md Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03: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.