From 77d5a50c480b6df1786f3b15cf4afda9442363cf Mon Sep 17 00:00:00 2001 From: Ailing Zhang Date: Sun, 8 Oct 2023 10:43:38 +0800 Subject: [PATCH] [bug] Fix missing taichi_common symbol in gfx_runtime --- taichi/runtime/gfx/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/taichi/runtime/gfx/CMakeLists.txt b/taichi/runtime/gfx/CMakeLists.txt index a810ba9776daa..0a4efbc974de1 100644 --- a/taichi/runtime/gfx/CMakeLists.txt +++ b/taichi/runtime/gfx/CMakeLists.txt @@ -21,3 +21,4 @@ target_include_directories(gfx_runtime ${PROJECT_SOURCE_DIR}/external/spdlog/include ${LLVM_INCLUDE_DIRS} ) +target_link_libraries(gfx_runtime PRIVATE taichi_common)