Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 607 Bytes

File metadata and controls

34 lines (26 loc) · 607 Bytes

Building Splinter

Splinter uses CMake, and comes with a configure script to manage the various build options:

Use: ./configure [options], Where [optiona] are:
--with-lua
--with-wasm
--with-rust
--with-embeddings
--with-numa
--with-llama

If you just want KV and embeddings:

./configure --with-embeddings

If you want embeddings and llama:

./configure --with-embeddings --with-llama

If you want to build the whole kitchen sink:

./configure --dev

Next, use make and sudo -E make install to install the compiled programs and other build artifacts.