]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/lib.rs
pin docs: add some forward references
[rust.git] / src / librustc_target / lib.rs
1 //! Some stuff used by rustc that doesn't have many dependencies
2 //!
3 //! Originally extracted from rustc::back, which was nominally the
4 //! compiler 'backend', though LLVM is rustc's backend, so rustc_target
5 //! is really just odds-and-ends relating to code gen and linking.
6 //! This crate mostly exists to make rustc smaller, so we might put
7 //! more 'stuff' here in the future. It does not have a dependency on
8 //! LLVM.
9
10 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
11 #![feature(bool_to_option)]
12 #![feature(const_fn)]
13 #![feature(const_panic)]
14 #![feature(nll)]
15 #![feature(never_type)]
16 #![feature(associated_type_bounds)]
17 #![feature(exhaustive_patterns)]
18
19 // FIXME(#56935): Work around ICEs during cross-compilation.
20 #[allow(unused)]
21 extern crate rustc_macros;
22
23 #[macro_use]
24 extern crate log;
25
26 pub mod abi;
27 pub mod asm;
28 pub mod spec;
29
30 /// Requirements for a `StableHashingContext` to be used in this crate.
31 /// This is a hack to allow using the `HashStable_Generic` derive macro
32 /// instead of implementing everything in librustc_middle.
33 pub trait HashStableContext {}