Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
[package]
authors = ["Jorge Aparicio <[email protected]>"]
build = "build.rs"
name = "rustc_builtins"
version = "0.1.0"
name = "compiler_builtins"
version = "0.0.0"

[lib]
name = "compiler_builtins"
path = "lib.rs"

[build-dependencies]
gcc = "0.3.35"
gcc = "0.3.27"
rustc-cfg = "0.2.0"

[dependencies]
[dependencies.core]
optional = true
path = "../libcore"

[dependencies.rlibc]
git = "https://github.com/alexcrichton/rlibc"
Expand All @@ -23,6 +29,8 @@ compiler-rt = { path = "compiler-rt" }
[features]
# Build the missing intrinsics from compiler-rt C source code
c = []
# for integration into rust-lang/rust
rustbuild = ["core"]
weak = ["rlibc/weak"]

[workspace]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions src/lib.rs → lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![crate_name = "compiler_builtins"]
#![crate_type = "rlib"]
#![feature(asm)]
#![feature(core_intrinsics)]
#![feature(linkage)]
Expand Down
File renamed without changes.
File renamed without changes.