From a56c48d93193ebcd995fa16427b9a6b55e3a6574 Mon Sep 17 00:00:00 2001 From: thomas10011 Date: Sat, 22 Jun 2024 16:56:17 +0800 Subject: [PATCH] Fix CMakeLists.txt to allow building when LLVM backend is configured other than x86 and arm. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1eea23d9..725c88ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,7 @@ set(LLVM_LINK_COMPONENTS Option Support Symbolize - ARM - X86 + ${LLVM_TARGETS_TO_BUILD} ) add_subdirectory(Raiser)