From: Jared Tweed Date: Fri, 2 May 2025 09:41:35 +0000 (-0700) Subject: cmake : removed stdc++fs (whisper/3097) X-Git-Tag: upstream/0.0.5318~14 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=bba9d945c14b93c5264b7956e00736601ca6f89a;p=pkg%2Fggml%2Fsources%2Fllama.cpp cmake : removed stdc++fs (whisper/3097) * removed stdc++fs * kept line, but removed stdc++fs --- diff --git a/ggml/src/CMakeLists.txt b/ggml/src/CMakeLists.txt index 43d9fc4f..ddea5ad3 100644 --- a/ggml/src/CMakeLists.txt +++ b/ggml/src/CMakeLists.txt @@ -214,7 +214,7 @@ add_library(ggml target_link_libraries(ggml PUBLIC ggml-base) if (CMAKE_SYSTEM_NAME MATCHES "Linux") - target_link_libraries(ggml PRIVATE dl stdc++fs) + target_link_libraries(ggml PRIVATE dl) endif() function(ggml_add_backend_library backend)