compiler-builtins-zynq/Cargo.toml

38 lines
870 B
TOML
Raw Normal View History

2016-08-08 04:58:05 +08:00
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
name = "compiler_builtins"
2016-08-08 04:58:05 +08:00
version = "0.1.0"
2016-08-11 08:12:37 +08:00
[lib]
test = false
2017-04-11 03:38:17 +08:00
[build-dependencies]
cc = { optional = true, version = "1.0" }
2016-08-15 10:59:48 +08:00
[features]
default = ["compiler-builtins"]
# Enable compilation of C code in compiler-rt, filling in some more optimized
# implementations and also filling in unimplemented intrinsics
2017-09-23 12:30:12 +08:00
c = ["cc"]
# Flag this library as the unstable compiler-builtins lib
compiler-builtins = []
# Generate memory-related intrinsics like memcpy
mem = []
# Mangle all names so this can be linked in with other versions or other
# compiler-rt implementations. Also used for testing
mangled-names = []
# Don't generate lang items for i128 intrisnics and such
no-lang-items = []
2017-04-11 05:12:49 +08:00
[[example]]
name = "intrinsics"
required-features = ["c", "compiler-builtins"]
[workspace]
members = ["testcrate"]