paraver: enable OpenMP

This commit is contained in:
Raúl Peñacoba 2021-11-10 15:25:14 +01:00
parent 35d19c262c
commit d2834624c2

View File

@ -29,12 +29,13 @@ stdenv.mkDerivation rec {
dontStrip = true; dontStrip = true;
preConfigure = '' preConfigure = ''
export CFLAGS="-O3" export CFLAGS="-O3 -DPARALLEL_ENABLED"
export CXXFLAGS="-std=c++17 -O3" export CXXFLAGS="-std=c++17 -O3 -DPARALLEL_ENABLED"
''; '';
configureFlags = [ configureFlags = [
"--with-boost=${boost}" "--with-boost=${boost}"
"--enable-openmp"
]; ];
buildInputs = [ buildInputs = [