From 35fd0db98e46c03ee62cb56862f23c74fffa94d7 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 17 Jan 2017 10:34:47 -0500 Subject: [PATCH] add support for Linux on AArch64, MIPS(64), PowerPC(64) and SPARC64 (#43) by switching from the syscall crate to the sc crate. The sc crate is a fork of the syscall crate that adds supports for several other platforms. --- shim/Cargo.toml | 2 +- shim/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shim/Cargo.toml b/shim/Cargo.toml index 6717026..15c9759 100644 --- a/shim/Cargo.toml +++ b/shim/Cargo.toml @@ -13,4 +13,4 @@ debug-assertions = false codegen-units = 1 [dependencies] -syscall = "0.2.1" +sc = "0.1.0" diff --git a/shim/src/lib.rs b/shim/src/lib.rs index fe13396..541432c 100644 --- a/shim/src/lib.rs +++ b/shim/src/lib.rs @@ -12,7 +12,7 @@ #![warn(missing_docs)] #[macro_use] -extern crate syscall; +extern crate sc; pub mod config; pub mod thread_destructor;