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

https://github.com/toshimaru/blog_os

"Writing an OS in Rust"
https://github.com/toshimaru/blog_os

Last synced: about 1 year ago
JSON representation

"Writing an OS in Rust"

Awesome Lists containing this project

README

          

# Writing an OS in Rust

resource:

## Build

```console
$ cargo build --target thumbv7em-none-eabihf
```

### for MacOS

```console
$ cargo rustc -- -C link-args="-e __start -static -nostartfiles"
```

## `target x86_64-blog_os.json`

```console
$ cargo build --target x86_64-blog_os.json
```

### How to enable the `nightly` feature

```console
$ rustup install nightly
$ rustup override set nightly
```