Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 2.01 KB

README.md

File metadata and controls

54 lines (40 loc) · 2.01 KB

Operating System Capstone 2021

My Implementation of Operating System at OSC2021, NYCU.

學號 GitHub 帳號 姓名 Email
0856039 ianre657 陳奕安 ianchen.cs08[at]nycu.edu.tw

demo

Prerequisite

How-to

Usage Command Description
Build code make Generate output to res
Cleanup binary files make clean Delete all outputs
Run Kernel make run-stdio Generate kernel image:kernel8.img
Enter Virtualenv make shell Start a bash shell (with cross-compiling tool)

Compiling a cross gdb for aarch64

  1. Download gdb from official gdb website
  2. unzip code and cd into folder
  3. ./configure --target=aarch64-linux
  4. make
  5. make install, (the target binary would be installed as /usr/local/bin/aarch64-linux-gdb)