A distributed operating system for the aarch64 architecture.
- A GCC Cross compiler targeted for aarch64-elf.
- Meson
- Ninja
- QEMU (currently works only up to version 8.2.1)
- GDB for debugging (optional)
meson setup --cross-file aarch64-elf-txt build
meson install -C build
This will build the project and create the sysroot under build/sysroot
To run with QEMU:
./run
To run with QEMU and connect GDB:
./run -d
This will start and halt qemu, connect gdb and load the symbols. To continue, type
c
.