mirror of
https://github.com/mudler/LocalAI.git
synced 2026-07-12 01:10:02 -04:00
* ⬆️ 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 <mudler@localai.io> 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 <mudler@localai.io> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
31 lines
1.3 KiB
CMake
31 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(gocrispasr LANGUAGES C CXX)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
add_subdirectory(./sources/CrispASR)
|
|
|
|
add_library(gocrispasr MODULE cpp/crispasr_shim.cpp)
|
|
target_include_directories(gocrispasr PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sources/CrispASR/include
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sources/CrispASR/ggml/include)
|
|
# Link the same backend set as crispasr-cli (examples/cli/CMakeLists.txt) so
|
|
# the session API can dispatch to every compiled-in architecture, not just
|
|
# 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-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
|
|
silero-lid pyannote-seg funasr paraformer sensevoice
|
|
crisp_audio
|
|
ggml)
|
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0)
|
|
target_link_libraries(gocrispasr PRIVATE stdc++fs)
|
|
endif()
|
|
|
|
set_property(TARGET gocrispasr PROPERTY CXX_STANDARD 17)
|
|
set_target_properties(gocrispasr PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|