0

clang compilation fails with this error:

clang: error: unable to execute command: Executable "ld.lld" doesn't exist!
clang: error: ld.lld command failed with exit code 1 (use -v to see invocation)

What package do I need to install to fix it? Ubuntu 24.04

R A
  • 927

1 Answers1

0

lld package, which installs lld-18 on my system:

sudo apt install lld
R A
  • 927