Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 398 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 398 Bytes

Let's develop kernel

This is my repository for kernel developing project of CyKor.

Target architecture is x86_64

Build

make install

Run with QEMU

This kernel could be run on QEMU, use this command:

make run-iso

Build with cmake

mkdir build
cd build
CC=../toolchain/build/bin/x86_64-elf-gcc CXX=../toolchain/build/bin/x86_64-elf-g++ cmake ..
make