From: Georgi Gerganov Date: Mon, 29 Sep 2025 13:49:11 +0000 (+0300) Subject: sync : whisper.cpp (#1359) X-Git-Tag: v0.9.4~10 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=83a15e113b130337a892fb6575c337754557d56f;p=pkg%2Fggml%2Fsources%2Fggml sync : whisper.cpp (#1359) * ggml : Fix MKL detection by quoting BLAS_INCLUDE_DIRS (whisper/3426) * sync : whisper.cpp --- diff --git a/scripts/sync-whisper.last b/scripts/sync-whisper.last index 732fa2af..2686dd20 100644 --- a/scripts/sync-whisper.last +++ b/scripts/sync-whisper.last @@ -1 +1 @@ -fc45bb86251f774ef817e89878bb4c2636c8a58f +22c12ee86deb317925ae7fc49d38b3634fc8f3ec diff --git a/src/ggml-blas/CMakeLists.txt b/src/ggml-blas/CMakeLists.txt index 76064c3f..60ce4b1e 100644 --- a/src/ggml-blas/CMakeLists.txt +++ b/src/ggml-blas/CMakeLists.txt @@ -74,7 +74,7 @@ if (BLAS_FOUND) target_compile_options(ggml-blas PRIVATE ${BLAS_LINKER_FLAGS}) - if (${BLAS_INCLUDE_DIRS} MATCHES "mkl" AND (${GGML_BLAS_VENDOR} MATCHES "Generic" OR ${GGML_BLAS_VENDOR} MATCHES "Intel")) + if ("${BLAS_INCLUDE_DIRS}" MATCHES "mkl" AND (${GGML_BLAS_VENDOR} MATCHES "Generic" OR ${GGML_BLAS_VENDOR} MATCHES "Intel")) add_compile_definitions(GGML_BLAS_USE_MKL) endif()