Fix build of coreutils

This commit is contained in:
Jeremy Soller 2016-12-19 18:16:23 -07:00
parent fff607cf9a
commit 1b7ea69430
5 changed files with 1 additions and 12 deletions

@ -1 +1 @@
Subproject commit 4a1f87b219b3db104f3e9ff21d974118357ff2e1 Subproject commit e8c057a343c2f55c38a134ac9db65f3c7f5c8eb2

View file

@ -14,6 +14,3 @@ panic_abort = { path = "panic_abort" }
#panic_unwind = { path = "panic_unwind" } #panic_unwind = { path = "panic_unwind" }
libc = { path = "libc" } libc = { path = "libc" }
unwind = { path = "unwind" } unwind = { path = "unwind" }
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = { git = "https://github.com/redox-os/syscall.git" }

View file

@ -9,7 +9,3 @@ name = "libc"
path = "../../rust/src/liblibc/src/lib.rs" path = "../../rust/src/liblibc/src/lib.rs"
test = false test = false
bench = false bench = false
[dependencies]
redox_syscall = { path = "../../syscall/" }
spin = "*"

View file

@ -5,6 +5,3 @@ authors = ["Jeremy Soller <jackpot51@gmail.com>"]
[lib] [lib]
path = "../../rust/src/libpanic_abort/lib.rs" path = "../../rust/src/libpanic_abort/lib.rs"
[dependencies]
redox_syscall = { path = "../../syscall/" }

View file

@ -8,5 +8,4 @@ path = "../../rust/src/libpanic_unwind/lib.rs"
[dependencies] [dependencies]
libc = { path = "../libc/" } libc = { path = "../libc/" }
redox_syscall = { path = "../../syscall/" }
unwind = { path = "../unwind/" } unwind = { path = "../unwind/" }