Skip to content
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
10 changes: 7 additions & 3 deletions README-Mandrel.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,22 @@ Mandrel distributions can be downloaded from [the repository's releases](https:/
### Prerequisites

Mandrel's `native-image` depends on the following packages:
* freetype-devel
* gcc
* glibc-devel
* libstdc++-static
* zlib-devel
* gcc

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`.

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