compiler-builtins-zynq/Cargo.toml

22 lines
497 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.gcc]
optional = true
version = "0.3.36"
2016-08-15 10:59:48 +08:00
[features]
# Build the missing intrinsics from compiler-rt C source code
c = ["gcc"]
# 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]