-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ivan Velickovic <[email protected]>
- Loading branch information
1 parent
e6ef96e
commit 006d8a3
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ The remainder of this README is for Microkit developers. | |
|
||
## Developer system requirements | ||
|
||
Development of Microkit has primarily been performed on Ubuntu 18.04 LTS (x86_64). | ||
Building the Microkit SDK is supported on Linux (x86_64) and macOS (Apple Silicon/Intel). | ||
|
||
This section attempts to list the packages or external development tools which are required during development. | ||
At this stage it may be incomplete. | ||
|
@@ -38,7 +38,7 @@ Please file an issue if additional packages are required. | |
* make | ||
* python3.9 | ||
* python3.9-venv | ||
* musl-1.2.2 | ||
* musl-1.2.2 (only when targeting Linux) | ||
* cmake | ||
* ninja-build | ||
* ARM GCC compiler for none-elf; version 12.2.1 20221205 | ||
|
@@ -62,14 +62,18 @@ On a Debian-like system you can do: | |
python3 python3-venv \ | ||
musl-dev musl-tools | ||
|
||
On Ubuntu 18.04 there are no packages available for musl-1.2.2; it must be compiled from source. | ||
On Ubuntu 18.04 Python 3.9 is available via the *deadsnakes* PPA: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa | ||
If you do not have Python 3.9 available, you can get it via the | ||
*deadsnakes* PPA: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa | ||
To use this: | ||
|
||
$ sudo add-apt-repository ppa:deadsnakes/ppa | ||
$ sudo apt update | ||
$ sudo apt install python3.9 python3.9-venv | ||
|
||
On macOS, with the [Homebrew](https://brew.sh) package manager you can do: | ||
|
||
$ brew install pandoc cmake dtc ninja qemu libxml2 [email protected] coreutils texlive | ||
|
||
Additonally, a number of Python libraries are needed. | ||
These should be installed using `pip`. | ||
|
||
|