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
Describe the bug
Installer will override clang on ubuntu even when clang-8 is already installed.
To Reproduce
Env:
Ubuntu 16.04
Run apt install clang-8 lld-8
Steps to reproduce the behavior:
Install rust and cargo normally
cargo build works fine
Install fleet with curl -L get.fleet.rs | sh
Both cargo build and fleet build failed with clang: error: invalid linker name in argument '-fuse-ld=lld'
clang --version suggests that it has been degraded to 3.8
Additional context
It seems that the installer only checks whether clang package is installed, leaving the fact that user may have already installed another version of clang or even build manually.
The text was updated successfully, but these errors were encountered:
Describe the bug
Installer will override
clang
on ubuntu even whenclang-8
is already installed.To Reproduce
Env:
apt install clang-8 lld-8
Steps to reproduce the behavior:
rust
andcargo
normallycargo build
works finefleet
withcurl -L get.fleet.rs | sh
cargo build
andfleet build
failed withclang: error: invalid linker name in argument '-fuse-ld=lld'
clang --version
suggests that it has been degraded to 3.8Additional context
clang
package is installed, leaving the fact that user may have already installed another version ofclang
or even build manually.The text was updated successfully, but these errors were encountered: