dns-bench/build_dig.sh
DarkCat09 d956601ed1
fix: adjust agressive optimization options
Sorry for my incompetence in C/C++

Credits: matrix @fox:matrix.org
2024-12-21 21:29:59 +04:00

41 lines
582 B
Bash
Executable file

#!/bin/bash
source .build.sh
echo
echo '==> Checking deps'
which git
which autoreconf
which make
which gcc || which clang
echo
echo '==> Cloning repo'
clone https://gitlab.isc.org/isc-projects/bind9.git bind9
cd bind9
trap 'cd ..' EXIT
set_cflags
use_lto
echo
echo '==> autoreconf -fi'
autoreconf -fi
echo
echo '==> ./configure (check deps, generate config)'
./configure \
--with-jemalloc \
--disable-doh \
--disable-geoip \
--without-libxml2 \
--without-json-c \
--without-libsystemd \
--without-zlib
echo
echo '==> make'
make_maxthreads
echo
echo '==> Done'