2016-08-08 04:58:05 +08:00
|
|
|
[package]
|
|
|
|
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
|
2016-10-11 08:05:21 +08:00
|
|
|
name = "compiler_builtins"
|
2019-05-15 05:41:07 +08:00
|
|
|
version = "0.1.13"
|
2018-11-22 03:09:24 +08:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/rust-lang-nursery/compiler-builtins"
|
|
|
|
homepage = "https://github.com/rust-lang-nursery/compiler-builtins"
|
|
|
|
documentation = "https://docs.rs/compiler_builtins"
|
|
|
|
description = """
|
|
|
|
Compiler intrinsics used by the Rust compiler. Also available for other targets
|
|
|
|
if necessary!
|
|
|
|
"""
|
2018-11-22 04:57:14 +08:00
|
|
|
include = [
|
|
|
|
'/Cargo.toml',
|
|
|
|
'/build.rs',
|
|
|
|
'/src/*',
|
|
|
|
'/examples/*',
|
|
|
|
'/LICENSE.txt',
|
|
|
|
'/README.md',
|
|
|
|
'/compiler-rt/*',
|
|
|
|
'/libm/src/math/*',
|
|
|
|
]
|
2018-11-22 04:55:06 +08:00
|
|
|
links = 'compiler-rt'
|
2016-08-11 08:12:37 +08:00
|
|
|
|
2018-02-01 02:04:01 +08:00
|
|
|
[lib]
|
|
|
|
test = false
|
2017-04-11 03:38:17 +08:00
|
|
|
|
2018-11-20 14:02:13 +08:00
|
|
|
[dependencies]
|
|
|
|
# For more information on this dependency see rust-lang/rust's
|
|
|
|
# `src/tools/rustc-std-workspace` folder
|
|
|
|
core = { version = "1.0.0", optional = true, package = 'rustc-std-workspace-core' }
|
|
|
|
|
2018-02-01 02:04:01 +08:00
|
|
|
[build-dependencies]
|
|
|
|
cc = { optional = true, version = "1.0" }
|
2016-09-27 04:55:11 +08:00
|
|
|
|
2018-07-13 00:29:32 +08:00
|
|
|
[dev-dependencies]
|
2018-09-02 02:12:41 +08:00
|
|
|
panic-handler = { path = 'crates/panic-handler' }
|
2018-07-13 00:29:32 +08:00
|
|
|
|
2016-08-15 10:59:48 +08:00
|
|
|
[features]
|
2018-02-01 02:04:01 +08:00
|
|
|
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"]
|
2018-02-01 02:04:01 +08:00
|
|
|
|
|
|
|
# Flag this library as the unstable compiler-builtins lib
|
2016-12-12 05:18:43 +08:00
|
|
|
compiler-builtins = []
|
2018-02-01 02:04:01 +08:00
|
|
|
|
|
|
|
# Generate memory-related intrinsics like memcpy
|
2016-12-18 12:01:47 +08:00
|
|
|
mem = []
|
2017-06-25 01:04:00 +08:00
|
|
|
|
2018-02-01 02:04:01 +08:00
|
|
|
# Mangle all names so this can be linked in with other versions or other
|
|
|
|
# compiler-rt implementations. Also used for testing
|
|
|
|
mangled-names = []
|
2016-09-17 04:53:14 +08:00
|
|
|
|
2018-02-01 02:04:01 +08:00
|
|
|
# Don't generate lang items for i128 intrisnics and such
|
|
|
|
no-lang-items = []
|
2017-04-11 05:12:49 +08:00
|
|
|
|
2018-11-20 14:02:13 +08:00
|
|
|
# Only used in the compiler's build system
|
2019-05-14 23:57:42 +08:00
|
|
|
rustc-dep-of-std = ['compiler-builtins', 'core']
|
2018-11-20 14:02:13 +08:00
|
|
|
|
2017-06-23 05:00:31 +08:00
|
|
|
[[example]]
|
|
|
|
name = "intrinsics"
|
2019-05-15 03:26:09 +08:00
|
|
|
required-features = ["compiler-builtins"]
|
2017-06-23 05:00:31 +08:00
|
|
|
|
2016-09-17 04:53:14 +08:00
|
|
|
[workspace]
|
2018-02-01 02:04:01 +08:00
|
|
|
members = ["testcrate"]
|
2018-11-22 02:19:31 +08:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = 'abort'
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = 'abort'
|