Build variadic functions as part of relibc
Showing
- Cargo.lock 1 addition, 0 deletionsCargo.lock
- Cargo.toml 3 additions, 0 deletionsCargo.toml
- build.rs 18 additions, 0 deletionsbuild.rs
- include/assert.h 0 additions, 0 deletionsinclude/assert.h
- include/bits/fcntl.h 2 additions, 17 deletionsinclude/bits/fcntl.h
- include/bits/stdio.h 4 additions, 35 deletionsinclude/bits/stdio.h
- include/bits/string.h 3 additions, 3 deletionsinclude/bits/string.h
- src/c/fcntl.c 24 additions, 0 deletionssrc/c/fcntl.c
- src/c/stdio.c 48 additions, 0 deletionssrc/c/stdio.c
... | ... | @@ -10,6 +10,9 @@ crate-type = ["staticlib"] |
[workspace] | ||
members = ["src/crt0"] | ||
[build-dependencies] | ||
cc = "1.0" | ||
[dependencies] | ||
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] } | ||
ctype = { path = "src/ctype" } | ||
... | ... |
build.rs
0 → 100644
include/assert.h
0 → 100644
src/c/fcntl.c
0 → 100644
src/c/stdio.c
0 → 100644
Please register or sign in to comment