Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building: add new dependencies #212

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions building/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,11 @@ The Phoenix-RTOS reference project supports the following target platforms:
- ia32-generic-qemu
- riscv64-generic-qemu
- riscv64-generic-spike
- sparcv8leon3-gr716-mini
- riscv64-noelv-fpga
- sparcv8leon3-generic-qemu
- sparcv8leon3-gr712rc-board
- sparcv8leon3-gr716-mimas
- sparcv8leon3-gr716-mini

To get the list of valid targets the `build.sh` script should be launched with an empty `TARGET` variable, eg:

Expand Down Expand Up @@ -260,7 +263,7 @@ Phoenix-RTOS system image.
There is a list of commands you can use to get them: on both Ubuntu and macOS host operating systems.

<details>
<summary>Intalling required tools for native build on Ubuntu (click to expand)</summary>
<summary>Installing required tools for native build on Ubuntu (click to expand)</summary>

```console
sudo apt update && \
Expand All @@ -272,13 +275,15 @@ There is a list of commands you can use to get them: on both Ubuntu and macOS ho
genext2fs \
libtool \
libhidapi-dev \
python3
python3 \
python3-jinja2 \
python3-yaml
```

</details>

<details>
<summary>Intalling required tools for native build on macOS (click to expand)</summary>
<summary>Installing required tools for native build on macOS (click to expand)</summary>

```console
brew update && \
Expand All @@ -293,7 +298,9 @@ There is a list of commands you can use to get them: on both Ubuntu and macOS ho
wget \
gnu-sed \
hidapi \
python3
python3 \
python3-jinja2 \
python3-yaml
```

*`bash` in version >= `4.0` and `make` in version >= `3.82` are needed (associative arrays and `undefine` used).
Expand Down
Loading