dns-bench/build_dog.sh

24 lines
278 B
Bash
Raw Normal View History

2024-12-21 22:32:33 +04:00
#!/bin/bash
source .build.sh
echo
echo '==> Checking deps'
which git
which cargo
echo
echo '==> Cloning repo'
clone https://github.com/ogham/dog.git dog
cd dog
trap 'cd ..' EXIT
set_cflags
echo
echo '==> Building dog'
build_rust --no-default-features
echo
echo '==> Done'