diff options
author | Christian Cunningham <cc@localhost> | 2022-04-06 10:58:56 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-06 10:58:56 -0700 |
commit | 1e9b23ce222129c814b1925619206db628c343e2 (patch) | |
tree | f28839d78f863ad30aa81a4cdf4d2f5e45e4f914 | |
parent | e7b8a60660d1e8380e73952742de796a6b1e3528 (diff) |
Add instructions for MacOS and WSL
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,12 +1,18 @@ # Jobbed ## Build Information -### Building (Debian) +### Building (Debian, WSL) - Clone the repository. - Ensure you have the `gcc-arm-none-eabi` cross compiler installed `# apt install gcc-arm-none-eabi`. - From the root of the directory, i.e. in `Jobbed`, execute `make -f Unix.mk` - The built image is found in `build/kernel7.img` and can be copied to the root of the Raspberry Pi SD card's first parition +### Building MacOS + - Clone the repository + - Ensure you have the `gcc-arm-embedded` formulae installed `$ brew install gcc-arm-embedded`. + - From the root of the directory, i.e. in `Jobbed`, execute `make -f Unix.mk` + - The built image is found in `build/kernel7.img` and can be copied to the root of the Raspberry Pi SD card's first parition + ### Building (Google Colab) - `!git clone https://github.com/TerminalCursor/Jobbed.git` - `!apt install gcc-arm-none-eabi` |