All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
v0.2.6 - 2022-02-04
- architectures aarch64, riscv64 and x86_64 now use the stable
asm!
macro. this crate will work on stable Rust 1.59+ when compiled to those architectures
v0.2.5 - 2021-08-14
- Added support for Android
v0.2.4 - 2021-05-15
- 64-bit RISC-V support
- Linux 5.12 system calls
- cross-compilation to 32-bit ARM
v0.2.3 - 2020-07-28
- switch from
asm!
tollvm_asm!
v0.2.2 - 2017-11-06
- The missing STATX system call.
v0.2.1 - 2017-05-06
- Some ARM specific syscals.
v0.2.0 - 2017-02-27
- More syscalls. Syscalls are now generated from the latest Linux version (4.10 at the time of writing this) source code.
- [breaking-change]. Some syscalls have been renamed to match the Linux source
code.
- ARM
- SYNC_FILE_RANGE2 -> ARM_SYNC_FILE_RANGE
- SPARC64
- GETRESGID -> GETRESGID32
- GETRESUID -> GETRESUID32
- SETRESGID -> SETRESGID32
- SETRESUID -> SETRESUID32
- ARM
- x86 syscall6. It was hitting rust-lang/rust#39098
v0.1.5 - 2017-02-03
- The syscall number for GETRANDOM on x86
v0.1.4 - 2017-02-02
- GETRANDOM and NEWFSTATAT syscalls
v0.1.3 - 2017-01-21
- Error when using MIPS' syscall5/syscall6 with optimizations enabled
v0.1.2 - 2017-01-21
- syscall5 and syscall6 for mips
v0.1.1 - 2017-01-14
- syscall2 for linux-aarch64. There was a type in the register constraints.
Initial release. Forked from syscall v0.2.1.
-
Support for ARM, Aarch64, MIPS, MIPS64, PowerPC, PowerPC64, SPARC64, x86 and x86_64 Linux
-
Support for x86_64 macOS
-
Support for x86_64 FreeBSD