#!/bin/bash

echo "Building $(git log -1)"
echo "---"

set -Eeuxo pipefail

./tools/make_requests
./tools/make_makefiles
autoreconf -f

cd build64
../configure -q -C --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
make -s
cd ..
