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

15 lines
287 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
2018-01-14 13:58:30 +01:00
cmake .. -DBoost_INCLUDE_DIRS=${PWD}/../externals/ext-boost -DCMAKE_BUILD_TYPE=Release
2017-07-17 17:39:10 +02:00
make -j4
2018-01-14 21:38:28 +01:00
./tests/dynarmic_tests --durations yes