3359572e5d
* Use ninja, the fast build system Make is known to be rather slow, but it's possible to generate other build system files with CMake, so use a faster one. * Use ccache on Travis * Dummy commit to test ccache
14 lines
293 B
Bash
Executable file
14 lines
293 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export CC=gcc-7
|
|
export CXX=g++-7
|
|
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
|
|
|
|
./tests/dynarmic_tests --durations yes
|