Merge branch 'tazz4843:master' into fix/progress-callback-crash

This commit is contained in:
Roman Steiner 2025-04-28 10:27:25 +02:00 committed by GitHub
commit f1a35221d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -75,8 +75,8 @@ All disabled by default unless otherwise specified.
* `openblas`: enable OpenBLAS support.
* `metal`: enable Metal support. Implicitly enables hidden GPU flag at runtime.
* `vulkan`: enable Vulkan support. Implicitly enables hidden GPU flag at runtime.
* `whisper-cpp-log`: allows hooking into whisper.cpp's log output and sending it to the `log` backend. Requires calling
* `whisper-cpp-tracing`: allows hooking into whisper.cpp's log output and sending it to the `tracing` backend.
* `log_backend`: allows hooking into whisper.cpp's log output and sending it to the `log` backend. Requires calling
* `tracing_backend`: allows hooking into whisper.cpp's log output and sending it to the `tracing` backend.
## Building

View file

@ -280,6 +280,10 @@ fn main() {
println!("cargo:rustc-link-lib=static=ggml-cuda");
}
if cfg!(feature = "openblas") {
println!("cargo:rustc-link-lib=static=ggml-blas");
}
println!(
"cargo:WHISPER_CPP_VERSION={}",
get_whisper_cpp_version(&whisper_root)