Fix CPU only builds

Go embed doesn't like when there's no matching files, so put
a dummy placeholder in to allow building without any GPU support
If no "server" library is found, it's safely ignored at runtime.
This commit is contained in:
Daniel Hiltgen
2024-01-03 16:08:34 -08:00
parent c7ea8f237e
commit ddbfa6fe31
2 changed files with 6 additions and 3 deletions

View File

@@ -35,6 +35,9 @@ BUILD_DIR="gguf/build/linux/cpu"
build
install
# Placeholder to keep go embed happy until we start building dynamic CPU lib variants
touch ${BUILD_DIR}/lib/dummy.so
if [ -d /usr/local/cuda/lib64/ ]; then
echo "CUDA libraries detected - building dynamic CUDA library"
init_vars