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
Additionally, on Arch Linux the current officially supported LLVM version is 16.0.6 so llvm-config command comes without a version prefix but the build script fails because it invokes llvm-config-16 --version instead of llvm-config --version. I had to create a symbolic link in order to fix this but it would be better if the build script checked llvm-config --version first before invoking the command with a specific prefix.
LLVM has been installed using the distribution default package.
LLVM has been built from source and then installed system-wide (by the way, AFLplusplus@9f6b012 cannot be build with LLVM 20).
But if a later version has been installed using another distribution package, e.g. llvm-17, llvm-18, then the command will be llvm-config-xx.
So I think you better retrieve the correct command using something like : which llvm-config > /dev/null 2>&1 && echo 'llvm-config' || ls /usr/bin | grep -o 'llvm-config-[0-9][0-9]' | sort -r | head -1
Additionally, on Arch Linux the current officially supported LLVM version is 16.0.6 so
llvm-config
command comes without a version prefix but the build script fails because it invokesllvm-config-16 --version
instead ofllvm-config --version
. I had to create a symbolic link in order to fix this but it would be better if the build script checkedllvm-config --version
first before invoking the command with a specific prefix.Originally posted by @a1akris in #434 (comment)
The text was updated successfully, but these errors were encountered: