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"
- Host: GitHub
- URL: https://github.com/toshimaru/blog_os
- Owner: toshimaru
- Created: 2024-11-12T05:45:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-14T00:46:56.000Z (over 1 year ago)
- Last Synced: 2025-06-11T07:10:28.260Z (about 1 year ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```