diff options
author | anzz1 <anzz1@live.com> | 2023-03-28 21:23:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 21:23:09 +0300 |
commit | 7f4c5c66514227c3870c2bd189fb0609fdd0de10 (patch) | |
tree | 2ea19f4fbea964e44f389a34b87b5ed5f7c97d0c /examples/perplexity | |
parent | 2a98bc18ea34dbf15f261a0df37080e588a189d1 (diff) |
llama : fix linkage with mingw (#551)
* Revert 7e53955 (#542)
Still needs to be fixed properly
* Fix linking on mingw32
Diffstat (limited to 'examples/perplexity')
-rw-r--r-- | examples/perplexity/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/perplexity/CMakeLists.txt b/examples/perplexity/CMakeLists.txt index 9bd8e37..5836df8 100644 --- a/examples/perplexity/CMakeLists.txt +++ b/examples/perplexity/CMakeLists.txt @@ -1,4 +1,4 @@ set(TARGET perplexity) add_executable(${TARGET} perplexity.cpp) -target_link_libraries(${TARGET} PRIVATE common llama ggml ${CMAKE_THREAD_LIBS_INIT}) +target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) target_compile_features(${TARGET} PRIVATE cxx_std_11) |