Fix build of coreutils
This commit is contained in:
parent
fff607cf9a
commit
1b7ea69430
|
@ -1 +1 @@
|
||||||
Subproject commit 4a1f87b219b3db104f3e9ff21d974118357ff2e1
|
Subproject commit e8c057a343c2f55c38a134ac9db65f3c7f5c8eb2
|
|
@ -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" }
|
|
||||||
|
|
|
@ -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 = "*"
|
|
||||||
|
|
|
@ -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/" }
|
|
||||||
|
|
|
@ -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/" }
|
||||||
|
|
Loading…
Reference in a new issue