You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Caused by:
No such file or directory (os error 2)', helix-syntax/build.rs:172:36
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Failed to execute C compiler
Caused by:
No such file or directory (os error 2)', helix-syntax/build.rs:172:36
thread 'main' panicked at 'assertion failed: `(left == right)`
left: `0`,
right: `28`', helix-syntax/build.rs:201:5
The first error was repeated in my terminal several times. The error on the bottom was not. gcc is installed and on my PATH. #642 had the same error, and it was fixed by installing gcc.
The issue seems to be at least related to the build_library().unwrap() function called in `helix-syntax/build.rs', but I don't know enough Rust to debug it.
Any help appreciated, would love to contribute.
The text was updated successfully, but these errors were encountered:
You may want to install a C++ compiler as well (g++ in your case), the error message is misleading, it may use a C or C++ compiler, but the error message always says C.
I'm also on Fedora 34. I was able to solve this with
sudo dnf group install "C Development Tools and Libraries"
I'm running Fedora 34 Silverblue so I try out new software in a container. This type of headache could be solved by documenting the build dependencies.
Reproduction steps
Environment
Bug:
The first error was repeated in my terminal several times. The error on the bottom was not.
gcc
is installed and on my PATH. #642 had the same error, and it was fixed by installinggcc
.The issue seems to be at least related to the
build_library().unwrap()
function called in `helix-syntax/build.rs', but I don't know enough Rust to debug it.Any help appreciated, would love to contribute.
The text was updated successfully, but these errors were encountered: