From b5784bc2efb3c264947b67771a118f965de57082 Mon Sep 17 00:00:00 2001 From: TryAngle <45734252+TriedAngle@users.noreply.github.com> Date: Tue, 11 Apr 2023 15:08:31 +0200 Subject: [PATCH] Fix: `Unable to find LLVM-config` on Ubuntu appends a check for llvm-config-14 on linux --- build_odin.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_odin.sh b/build_odin.sh index a1cdbd62f..8cb081b45 100755 --- a/build_odin.sh +++ b/build_odin.sh @@ -97,6 +97,8 @@ config_linux() { LLVM_CONFIG=llvm-config-11 elif [ -x "$(command -v llvm-config-11-16)" ]; then LLVM_CONFIG=llvm-config-11-64 + elif [ -x "$(command -v llvm-config-14)" ]; then + LLVM_CONFIG=llvm-config-14 else panic "Unable to find LLVM-config" fi