https://github.com/auracletech/veer
WIP rust operating system ♾️
https://github.com/auracletech/veer
Last synced: 7 months ago
JSON representation
WIP rust operating system ♾️
- Host: GitHub
- URL: https://github.com/auracletech/veer
- Owner: AuracleTech
- Created: 2022-08-22T03:19:11.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-24T21:43:57.000Z (almost 4 years ago)
- Last Synced: 2024-12-29T00:54:00.575Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# veer
#### dependencies
```rust,ignore
rustup toolchain install nightly
rustup component add rust-src --toolchain nightly-x86_64-pc-windows-msvc
rustup component add llvm-tools-preview
cargo install bootimage
```
#### bootimage tasks
```rust,ignore
➡️ Compiles our kernel to an ELF file
➡️ Compiles the bootloader dependency as a standalone executable
➡️ Links the bytes of the kernel ELF file to the bootloader
```