Skip to content

Commit b0a40ba

Browse files
committed
fix(llama-bench): link quant-bench against llama-common (was 'common', undefined target)
1 parent 95d071e commit b0a40ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/llama-bench/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target_compile_features(${TARGET} PRIVATE cxx_std_17)
55

66
set(TARGET_QUANT quant-bench)
77
add_executable(${TARGET_QUANT} quant-bench.cpp)
8-
target_link_libraries(${TARGET_QUANT} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
8+
target_link_libraries(${TARGET_QUANT} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
99
target_compile_features(${TARGET_QUANT} PRIVATE cxx_std_17)
1010

1111
if(LLAMA_TOOLS_INSTALL)

0 commit comments

Comments
 (0)