summary refs log tree commit diff
path: root/src/rustc/compiler_builtins_shim/Cargo.toml
blob: e0026078a5d72651e9c83304ffe65e1ab049c955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# See libc_shim/Cargo.toml for why this exists

[package]
name = "compiler_builtins"
authors = ["The Rust Project Developers"]
version = "0.0.0"
build = "../../libcompiler_builtins/build.rs"

[lib]
path = "../../libcompiler_builtins/src/lib.rs"
test = false
doctest = false

[dependencies]
core = { path = "../../libcore" }

[build-dependencies]
gcc = "0.3"

[features]
c = []
default = ["c", "rustbuild", "compiler-builtins"]
rustbuild = []
compiler-builtins = []