An open API service indexing awesome lists of open source software.

https://github.com/supercomputer7/nahmanboot

A project that aims to create a modern x86(_64) bootloader, inspired by the great work of the SerenityOS project.
https://github.com/supercomputer7/nahmanboot

Last synced: 9 days ago
JSON representation

A project that aims to create a modern x86(_64) bootloader, inspired by the great work of the SerenityOS project.

Awesome Lists containing this project

README

          

NahmanBoot

# How to build and test

## Toolchain build

From local repository directory:
```sh
cd Toolchain
./build.sh
```

## Actual compiling

From local repository directory:
```sh
mkdir Build
cd Build
cmake .. -G Ninja
ninja
```

## Testing!

From local repository directory:
```sh
ninja run
```