Reputation: 9
hello on my server clang 11.0.1 version is installed but my project is compiled with clang14, when I write the command " pkg install clang14 " I get an error like clang14 not found.
please help me solve this problem, thank you.
I tried to download clang14 from llvm web page but I couldn't install it :(
Upvotes: -2
Views: 102
Reputation: 15160
clang is part of llvm. There is no package for clang alone. Instead, install llvm14.
But you should first deinstall llvm11 if you no longer need it.
pkg delete llvm11
Upvotes: -1