dynarmic/.travis/build-x86_64-linux/build.sh

15 lines
293 B
Bash
Raw Normal View History

2017-07-17 17:39:10 +02:00
#!/bin/sh
set -e
set -x
2018-01-01 16:09:45 +01:00
export CC=gcc-7
export CXX=g++-7
2017-07-17 17:39:10 +02:00
export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH
mkdir build && cd build
cmake .. -DBoost_INCLUDE_DIRS=${PWD}/../externals/ext-boost -DCMAKE_BUILD_TYPE=Release -G Ninja
ninja
2017-07-17 17:39:10 +02:00
2019-04-20 11:48:37 +02:00
./tests/dynarmic_tests --durations yes