From d179bb2be764fbdf194415d5745a4fc9051abdc4 Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Sun, 1 Sep 2024 12:54:03 +0800 Subject: [PATCH] toolchain: add `LLC` field to `llvmToolchain` --- src/toolchain/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/toolchain/index.ts b/src/toolchain/index.ts index bbde822..294ed05 100644 --- a/src/toolchain/index.ts +++ b/src/toolchain/index.ts @@ -34,6 +34,7 @@ export function llvmToolchain(prefix: string) { CXX: path.resolve(bin, "clang++"), FC: path.resolve(bin, "flang"), LLVM_EXTRACT: path.resolve(bin, "llvm-extract"), + LLC: path.resolve(bin, "llc"), }; }