Merge branch 'master' into 'master'
# Conflicts: # src/stdio/src/default.rs
No related branches found
No related tags found
Showing
- .gitlab-ci.yml 27 additions, 0 deletions.gitlab-ci.yml
- Cargo.lock 91 additions, 70 deletionsCargo.lock
- Cargo.toml 9 additions, 2 deletionsCargo.toml
- Makefile 4 additions, 2 deletionsMakefile
- include/assert.h 14 additions, 0 deletionsinclude/assert.h
- include/bits/exec.h 47 additions, 0 deletionsinclude/bits/exec.h
- include/bits/inttypes.h 195 additions, 0 deletionsinclude/bits/inttypes.h
- include/bits/stdio.h 1 addition, 0 deletionsinclude/bits/stdio.h
- include/bits/sys/stat.h 11 additions, 0 deletionsinclude/bits/sys/stat.h
- include/complex.h 2 additions, 0 deletionsinclude/complex.h
- include/math.h 1 addition, 0 deletionsinclude/math.h
- include/setjmp.h 67 additions, 0 deletionsinclude/setjmp.h
- include/stdint.h 66 additions, 0 deletionsinclude/stdint.h
- ralloc 1 addition, 1 deletionralloc
- rust-toolchain 1 addition, 1 deletionrust-toolchain
- src/crt0/src/lib.rs 12 additions, 4 deletionssrc/crt0/src/lib.rs
- src/fenv/cbindgen.toml 1 addition, 1 deletionsrc/fenv/cbindgen.toml
- src/inttypes/Cargo.toml 14 additions, 0 deletionssrc/inttypes/Cargo.toml
- src/inttypes/build.rs 11 additions, 0 deletionssrc/inttypes/build.rs
- src/inttypes/cbindgen.toml 7 additions, 0 deletionssrc/inttypes/cbindgen.toml
.gitlab-ci.yml
0 → 100644
This diff is collapsed.
... | ... | @@ -11,19 +11,20 @@ crate-type = ["staticlib"] |
members = ["src/crt0"] | ||
[build-dependencies] | ||
cc = "1.0" | ||
cc = "1.0.17" | ||
[dependencies] | ||
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false } | ||
ctype = { path = "src/ctype" } | ||
errno = { path = "src/errno" } | ||
fcntl = { path = "src/fcntl" } | ||
fenv = { path = "src/fenv" } | ||
float = { path = "src/float" } | ||
grp = { path = "src/grp" } | ||
inttypes = { path = "src/inttypes" } | ||
locale = { path = "src/locale" } | ||
netinet = { path = "src/netinet" } | ||
platform = { path = "src/platform" } | ||
setjmp = { path = "src/setjmp" } | ||
semaphore = { path = "src/semaphore" } | ||
signal = { path = "src/signal" } | ||
stdio = { path = "src/stdio" } | ||
... | ... | @@ -34,11 +35,17 @@ sys_resource = { path = "src/sys_resource" } |
sys_socket = { path = "src/sys_socket" } | ||
sys_stat = { path = "src/sys_stat" } | ||
sys_time = { path = "src/sys_time" } | ||
sys_utsname = { path = "src/sys_utsname" } | ||
sys_wait = { path = "src/sys_wait" } | ||
time = { path = "src/time" } | ||
unistd = { path = "src/unistd" } | ||
wctype = { path = "src/wctype" } | ||
[dependencies.compiler_builtins] | ||
git = "https://github.com/rust-lang-nursery/compiler-builtins.git" | ||
default-features = false | ||
features = ["no-lang-items", "mangled-names"] | ||
[profile.dev] | ||
panic = "abort" | ||
... | ... |
include/bits/exec.h
0 → 100644
include/bits/inttypes.h
0 → 100644
include/bits/sys/stat.h
0 → 100644
include/complex.h
0 → 100644
include/setjmp.h
0 → 100644
src/inttypes/Cargo.toml
0 → 100644
src/inttypes/build.rs
0 → 100644
src/inttypes/cbindgen.toml
0 → 100644
Please register or sign in to comment