From ce5662ba90457ff9ff1d9803d7555ec8859c9fca Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sat, 27 Sep 2025 13:55:51 +0200 Subject: [PATCH] chore(deps): bump llama.cpp to '72b24d96c6888c609d562779a23787304ae4609c' (#6349) * chore(deps): bump llama.cpp to '72b24d96c6888c609d562779a23787304ae4609c' Signed-off-by: Ettore Di Giacinto * Disable OPENSSL (just introduced upstream) Signed-off-by: Ettore Di Giacinto --------- Signed-off-by: Ettore Di Giacinto --- backend/cpp/llama-cpp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/cpp/llama-cpp/Makefile b/backend/cpp/llama-cpp/Makefile index f9faeb7a3..969dd514e 100644 --- a/backend/cpp/llama-cpp/Makefile +++ b/backend/cpp/llama-cpp/Makefile @@ -1,5 +1,5 @@ -LLAMA_VERSION?=835b2b915c52bcabcd688d025eacff9a07b65f52 +LLAMA_VERSION?=ace6a54565444b6377bee8e7ac693238e7766279 LLAMA_REPO?=https://github.com/ggerganov/llama.cpp CMAKE_ARGS?= @@ -14,7 +14,7 @@ CMAKE_ARGS+=-DBUILD_SHARED_LIBS=OFF -DLLAMA_CURL=OFF CURRENT_MAKEFILE_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) ifeq ($(NATIVE),false) - CMAKE_ARGS+=-DGGML_NATIVE=OFF + CMAKE_ARGS+=-DGGML_NATIVE=OFF -DLLAMA_OPENSSL=OFF endif # If build type is cublas, then we set -DGGML_CUDA=ON to CMAKE_ARGS automatically ifeq ($(BUILD_TYPE),cublas)