Skip to content
Closed
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
7 changes: 5 additions & 2 deletions README-Mandrel.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,19 @@ Mandrel distributions can be downloaded from [the repository's releases](https:/
Mandrel's `native-image` depends on the following packages:
* glibc-devel
* zlib-devel
* freetype-devel
* gcc
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we include libstdc++-static in this list?


On Fedora/CentOS/RHEL they can be installed with:
```bash
dnf install glibc-devel zlib-devel gcc
dnf install glibc-devel zlib-devel gcc freetype-devel libstdc++-static
```

Note the package might be called `glibc-static` instead of `libstdc++-static`.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This note is missing from the other PRs


On Ubuntu-like systems with:
```bash
apt install libc6-dev zlib1g-dev gcc
apt install g++ zlib1g-dev libfreetype6-dev
```

### Building Mandrel From Source
Expand Down