From c20225fc132d2079b9abe2cc6fc1f56c417d1b88 Mon Sep 17 00:00:00 2001 From: "LocalAI [bot]" <139863280+localai-bot@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:01:19 +0200 Subject: [PATCH] chore: :arrow_up: Update CrispStrobe/CrispASR to `f7838a306687f22c281d29c250f879a4ab3df2d7` (#10177) * :arrow_up: Update CrispStrobe/CrispASR Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix(crispasr): link crispasr-lib CMake target instead of crispasr The dependency-bump regeneration of this branch reset CMakeLists.txt to master and dropped the prior link-target fix, reintroducing the `cannot find -lcrispasr` failure. Upstream CrispASR (f7838a3) defines the library as the CMake target `crispasr-lib` (with OUTPUT_NAME crispasr); there is no target named `crispasr`, so target_link_libraries falls back to a bare `-lcrispasr` linker flag that cannot be resolved. Point the link at the real target name. Verified locally: CPU cmake-configure of the bumped source generates a gocrispasr link line referencing sources/CrispASR/src/libcrispasr.a with no dangling -lcrispasr. Signed-off-by: Ettore Di Giacinto Assisted-by: Claude:opus-4.8 [Claude Code] --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Ettore Di Giacinto Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto --- backend/go/crispasr/CMakeLists.txt | 2 +- backend/go/crispasr/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/go/crispasr/CMakeLists.txt b/backend/go/crispasr/CMakeLists.txt index 5ed6a9c3f..c77a8ecad 100644 --- a/backend/go/crispasr/CMakeLists.txt +++ b/backend/go/crispasr/CMakeLists.txt @@ -14,7 +14,7 @@ target_include_directories(gocrispasr PRIVATE # whisper. crispasr is the referencer; the backend static libs supply the # per-architecture symbols; ggml is the math/runtime base. target_link_libraries(gocrispasr PRIVATE - crispasr + crispasr-lib parakeet canary canary_ctc cohere granite_speech granite_nle voxtral voxtral4b qwen3_asr qwen3_tts orpheus chatterbox indextts kokoro voxcpm2_tts m2m100 t5_translate wav2vec2-ggml vibevoice diff --git a/backend/go/crispasr/Makefile b/backend/go/crispasr/Makefile index 56518c674..7da1d09c2 100644 --- a/backend/go/crispasr/Makefile +++ b/backend/go/crispasr/Makefile @@ -8,7 +8,7 @@ JOBS?=$(shell nproc --ignore=1) # CrispASR version (release tag) CRISPASR_REPO?=https://github.com/CrispStrobe/CrispASR -CRISPASR_VERSION?=13d54e110e1538e0f0bc3af0680b9ab246cfb48d +CRISPASR_VERSION?=f7838a306687f22c281d29c250f879a4ab3df2d7 SO_TARGET?=libgocrispasr.so CMAKE_ARGS+=-DBUILD_SHARED_LIBS=OFF