mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-09-12 07:59:01 +02:00
24b00db867
This commit introduces semantic versioning to llama.cpp. This is a work in progress to figure out what would work.
8 lines
220 B
Bash
Executable File
8 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cmake -S . -B build -DCMAKE_PREFIX_PATH="${PWD}/install"
|
|
cmake --build build
|
|
LD_LIBRARY_PATH="${PWD}/install/lib/llama.cpp:${PWD}/install/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" ./build/test-cmake
|