compiler-builtins-zynq/Cargo.toml

28 lines
611 B
TOML
Raw Normal View History

2016-08-08 04:58:05 +08:00
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
build = "build.rs"
name = "compiler_builtins"
2016-08-08 04:58:05 +08:00
version = "0.1.0"
2016-08-11 08:12:37 +08:00
[build-dependencies]
rustc-cfg = "0.3.0"
2016-10-16 02:35:38 +08:00
gcc = "0.3.36"
2016-08-11 08:12:37 +08:00
[dev-dependencies]
quickcheck = "0.3.1"
rand = "0.3.14"
gcc_s = { path = "gcc_s" }
compiler-rt = { path = "compiler-rt" }
2016-08-15 10:59:48 +08:00
[features]
# Build the missing intrinsics from compiler-rt C source code
c = []
# Mark this crate as the #![compiler_builtins] crate
compiler-builtins = []
default = ["compiler-builtins"]
# Include implementations of memory operations like memcpy
mem = []
rustbuild = ["compiler-builtins"]
[workspace]