Skip to content

Commit

Permalink
add support for Linux on AArch64, MIPS(64), PowerPC(64) and SPARC64 (#43
Browse files Browse the repository at this point in the history
)

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.
  • Loading branch information
Jorge Aparicio authored and ticki committed Jan 17, 2017
1 parent 1dad80a commit 35fd0db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shim/Cargo.toml
Expand Up @@ -13,4 +13,4 @@ debug-assertions = false
codegen-units = 1

[dependencies]
syscall = "0.2.1"
sc = "0.1.0"
2 changes: 1 addition & 1 deletion shim/src/lib.rs
Expand Up @@ -12,7 +12,7 @@
#![warn(missing_docs)]

#[macro_use]
extern crate syscall;
extern crate sc;

pub mod config;
pub mod thread_destructor;
Expand Down

0 comments on commit 35fd0db

Please sign in to comment.