fsm/build-ies.sh
DataHoarder 6d07061f4d
Some checks failed
continuous-integration/drone/push Build is failing
WiP: Added IES, start configuration
2021-10-29 05:47:28 +02:00

18 lines
306 B
Bash
Executable file

#!/bin/bash
set -ex
pushd "${0%/*}"
pushd deps/IES
if [[ -d "build" ]]; then
rm -r build
fi
mkdir build
export CC=clang
export CXX=clang++
export CFLAGS="-ggdb -O1"
export CXXFLAGS="-ggdb -O1"
./autogen.sh
./configure --enable-static --enable-shared --prefix "$(pwd)/build"
make -j$(nproc)
make install