Files
rust/src/librustc_codegen_llvm
kennytm c9870a4fe7 Rollup merge of #56154 - petrhosek:fuchsia-linker-args, r=alexcrichton
Pass additional linker flags when targeting Fuchsia

This is a follow up to 8aa9267 which changed the driver to use lld
directly rather than invoking it through Clang. This change ensures
we pass all the necessary flags to lld.
2018-11-24 01:31:59 +08:00
..
2018-10-08 16:55:04 +02:00
2018-05-17 15:08:30 +03:00
2018-11-22 20:20:23 +01:00
2018-11-13 14:45:31 -05:00
2018-05-17 15:08:30 +03:00

The codegen crate contains the code to convert from MIR into LLVM IR, and then from LLVM IR into machine code. In general it contains code that runs towards the end of the compilation process.

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