]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/Cargo.toml
Beginning of moving all backend-agnostic code to rustc_codegen_ssa
[rust.git] / src / librustc_codegen_llvm / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_codegen_llvm"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_codegen_llvm"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 cc = "1.0.1"
14 num_cpus = "1.0"
15 rustc-demangle = "0.1.4"
16 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
17 rustc_llvm = { path = "../librustc_llvm" }
18 memmap = "0.6"
19
20 [features]
21 # This is used to convince Cargo to separately cache builds of `rustc_codegen_llvm`
22 # when this option is enabled or not. That way we can build two, cache two
23 # artifacts, and have nice speedy rebuilds.
24 emscripten = ["rustc_llvm/emscripten"]