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