Skip to content

Commit 4f9066c

Browse files
Xarbirusarthw
authored andcommitted
cmake : fixed the order of linking libraries for llama-quantize (ggml-org#9450)
1 parent d55eaab commit 4f9066c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/quantize/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(TARGET llama-quantize)
22
add_executable(${TARGET} quantize.cpp)
33
install(TARGETS ${TARGET} RUNTIME)
4-
target_link_libraries(${TARGET} PRIVATE llama common ${CMAKE_THREAD_LIBS_INIT})
4+
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
55
target_include_directories(${TARGET} PRIVATE ../../common)
66
target_compile_features(${TARGET} PRIVATE cxx_std_11)

0 commit comments

Comments
 (0)