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

15 lines
287 B
Bash
Raw Normal View History

2017-07-17 16:39:10 +01:00
#!/bin/sh
set -e
set -x
2018-01-01 15:09:45 +00:00
export CC=gcc-7
export CXX=g++-7
2017-07-17 16:39:10 +01:00
export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH
mkdir build && cd build
2018-01-14 12:58:30 +00:00
cmake .. -DBoost_INCLUDE_DIRS=${PWD}/../externals/ext-boost -DCMAKE_BUILD_TYPE=Release
2017-07-17 16:39:10 +01:00
make -j4
2018-01-14 20:38:28 +00:00
./tests/dynarmic_tests --durations yes