You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Wang Runji fb9a1d5f70
Merge pull request #1 from jiegec/linux64-syscall
6 years ago
biscuit Workaround for tls and use getdents64 to implement fdopendir 6 years ago
rust fix x86_64 syscall register (r10) 6 years ago
ucore fix struct stat to match Linux ABI 6 years ago
.gitignore add Rust programs. add Makefile 6 years ago
.travis.yml update travis 6 years ago
Makefile biscuit: support aarch64 6 years ago
README.md add Rust programs. add Makefile 6 years ago

README.md

rCore-user

Build Status

User programs for rCore OS.

Now it has 3 parts:

  • ucore: C-lang, from the original ucore_os_lab
  • biscuit: C/C++, from Biscuit, based on a partial libc litc. (WIP)
  • rust: Simple no_std Rust programs.

Build

make {ucore,biscuit,rust,all} arch={i386,x86_64,riscv32,riscv64,aarch64}

Output to build/$(arch)

Notice

  • The syscall ids have been set compatible with Linux64.
  • So the ucore part can not run on the original ucore.