Skip to content

Commit acb10b9

Browse files
authored
Merge branch 'main' into minor-readme-changes
2 parents f73cac5 + 89308de commit acb10b9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,15 @@ You can run Hyperlight on:
171171
After having an environment with a hypervisor setup, running the example has the following pre-requisites:
172172

173173
1. On Linux or WSL, you'll most likely need build essential. For Ubuntu, run `sudo apt install build-essential`. For Azure Linux, run `sudo dnf install build-essential`.
174-
2. [Rust](https://www.rust-lang.org/tools/install). Install toolchain v1.78.0 or later. Also, install the `x86_64-pc-windows-msvc` and `x86_64-unknown-none` targets with `rustup target add <target>` for each; these are needed to build the test guest binaries. (Note: install both targets on either Linux or Windows: Hyperlight can load ELF or PE files on either OS, and the tests/examples are built for both).
174+
2. [Rust](https://www.rust-lang.org/tools/install). Install toolchain v1.78.0 or later.
175+
176+
Also, install the `x86_64-pc-windows-msvc` and `x86_64-unknown-none` targets, these are needed to build the test guest binaries. (Note: install both targets on either Linux or Windows: Hyperlight can load ELF or PE files on either OS, and the tests/examples are built for both):
177+
178+
```sh
179+
rustup target add x86_64-unknown-none
180+
rustup target add x86_64-pc-windows-msvc
181+
```
182+
175183
3. [just](https://github.com/casey/just). `cargo install just` .
176184
4. [clang and LLVM](https://clang.llvm.org/get_started.html).
177185
- On Ubuntu, run:

0 commit comments

Comments
 (0)