From c2cd84a749f605473ba293292766264a4027e600 Mon Sep 17 00:00:00 2001 From: Agustin Gomes Date: Sat, 30 Nov 2024 22:20:31 +0100 Subject: [PATCH] Add musl-gcc as dependency (#21366) This addition comes after attempting building Zed from source. As part of the process, one of the components (a crate I presume) called `ring` failed to compile due to the following sequence of console messages: ```log warning: ring@0.17.8: Compiler family detection failed due to error: ToolNotFound: Failed to find tool. Is `musl-gcc` installed? warning: ring@0.17.8: Compiler family detection failed due to error: ToolNotFound: Failed to find tool. Is `musl-gcc` installed? error: failed to run custom build command for `ring v0.17.8` ``` Adding this library should help fix the issue on Fedora 41 at least, and possibly will help fixing it for other RedHat based distributions as well. Closes #ISSUE Release Notes: - Add musl-gcc as dependency Signed-off-by: Agustin Gomes --- script/linux | 1 + 1 file changed, 1 insertion(+) diff --git a/script/linux b/script/linux index eecf70f90e..f1fe751154 100755 --- a/script/linux +++ b/script/linux @@ -67,6 +67,7 @@ yum=$(command -v yum || true) if [[ -n $dnf ]] || [[ -n $yum ]]; then pkg_cmd="${dnf:-${yum}}" deps=( + musl-gcc gcc clang cmake