Skip to content

Commit c2cd84a

Browse files
authored
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: [email protected]: Compiler family detection failed due to error: ToolNotFound: Failed to find tool. Is `musl-gcc` installed? warning: [email protected]: 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 <[email protected]>
1 parent d609931 commit c2cd84a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

script/linux

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ yum=$(command -v yum || true)
6767
if [[ -n $dnf ]] || [[ -n $yum ]]; then
6868
pkg_cmd="${dnf:-${yum}}"
6969
deps=(
70+
musl-gcc
7071
gcc
7172
clang
7273
cmake

0 commit comments

Comments
 (0)