From: Jared Tweed Date: Fri, 2 May 2025 09:41:35 +0000 (-0700) Subject: cmake : removed stdc++fs (whisper/3097) X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=1982bb59244c0adc5c67913545dc6f30f42c590f;p=pkg%2Fggml%2Fsources%2Fggml cmake : removed stdc++fs (whisper/3097) * removed stdc++fs * kept line, but removed stdc++fs --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 43d9fc4f..ddea5ad3 100644 --- a/src/CMakeLists.txt +++ b/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)