54 lines
1.2 KiB
Markdown
54 lines
1.2 KiB
Markdown
# Building KVS:
|
|
### Dependencies
|
|
You only need gcc & make! All static libs are inside `lib/`
|
|
|
|
```
|
|
Debian-based systems: sudo apt install gcc make
|
|
Arch-based systems: sudo pacman -S gcc make
|
|
Alpine-based systems: apk add gcc make
|
|
```
|
|
|
|
### Compiling:
|
|
To compile KVS, you only need to run a few commands
|
|
|
|
```
|
|
# First, clone the repo (insiders, use KVS-private)
|
|
git clone https://github.com/kxtzownsu/KVS
|
|
|
|
# Second, go into the directory (again, insiders, use KVS-private)
|
|
cd KVS
|
|
|
|
# Third, run two command to compile the KVS & KVG binary
|
|
make kvs # final binary is at ./build/kvs
|
|
make kvg # final binary is at ./build/kvg
|
|
|
|
# (OPTIONAL) Fourth, run the shim builder
|
|
sudo make shim-builder
|
|
|
|
# You can also run this instead of make
|
|
cd shim-builder/
|
|
sudo bash builder.sh
|
|
```
|
|
|
|
Notes: KVS **requires** KVG or else the shim will not build successfully
|
|
|
|
|
|
# Building KVG:
|
|
### Dependencies
|
|
Same as KVS, you only need `gcc` and `make`
|
|
|
|
```
|
|
Debian-based systems: sudo apt install gcc make
|
|
Arch-based systems: sudo pacman -S gcc make
|
|
Alpine-based systems: apk add gcc make
|
|
```
|
|
|
|
### Compiling
|
|
|
|
```
|
|
git clone https://github.com/kxtzownsu/KVS # insiders, use KVS-private
|
|
|
|
cd KVS
|
|
|
|
make kvg # final binary will be at ./build/kvg
|
|
``` |