From 1aff73d85c44f768d2d901e32cf02d9954128732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matev=C5=BE=20Jekovec?= Date: Thu, 3 Oct 2024 16:10:51 +0200 Subject: [PATCH] docs: Add clang to dependency list for building ROFL A discord user reported issue on fresh Ubuntu 24.04 that compiling ROFL fails during the compilation of mbedtls-sys-auto crate, if clang is not install on the host. --- docs/rofl/prerequisites.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/rofl/prerequisites.md b/docs/rofl/prerequisites.md index f6d1187d34..27742e6d04 100644 --- a/docs/rofl/prerequisites.md +++ b/docs/rofl/prerequisites.md @@ -85,11 +85,12 @@ rust environment: rustup target add x86_64-unknown-linux-musl ``` -Additionally, you will need the MUSL wrapper for gcc and the multilib package. -On Ubuntu/Debian systems, you can install it by running: +Additionally, you will need the MUSL wrapper for gcc, the multilib package and +clang for compiling the `mbedtls-sys-auto` dependency. On Ubuntu/Debian systems, +you can install those by running: ```shell -sudo apt install musl-tools gcc-multilib +sudo apt install musl-tools gcc-multilib clang ```