## How to update syscall wrappers
1. Modify functions in `linux_call.rs`.
2. Run `mkcall_linux.py` to regenerate call.rs files in platform module.
## How to get syscall asm instructions?
musl project contains syscall asm instructioins of main architectures,
We can use this command to generate readable asm code:
```bash
$ gcc -E ${arch}/syscall_arch.h
```
## How to install debian sysroot?
First install deps:
```bash
$ sudo apt install qemu-user-static debootstrap
```
Then create sysroot of specific architecture:
```bash
$ sudo debootstrap --arch aarch64 buster aarch64-root http://ftp.cn.debian.org/debian
```
Here:
* `--arch aarch64`, use `aarch64`
* `buster`, use latest debian stable image
* `aarch64-root`, rootfs folder name
* `http://ftp.cn.debian.org/debian`, debian mirror url. Most of unofficial debian
mirrors do not support non-x86 architectures