Files
2026-08-16 19:09:33 +07:00

9 lines
164 B
Bash
Executable File

#!/bin/bash
rm -rf build
mkdir build
cd build
cmake .. -DGGML_BLAS=ON -DBLAS_INCLUDE_DIRS=$PREFIX/include/openblas
cmake --build . --config Release -j "$(nproc)"