summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2023-01-04 11:24:04 -0500
committerBen Gamari <ben@smart-cactus.org>2023-01-04 11:24:04 -0500
commit0af966f3681e7608b3afaf6a68713c7d87ed68a0 (patch)
tree080ec9643f77c92777268f3f90983a0c9d54cbd0
parent24de35c698cf210cc23a711e7ce5ca40044d93fb (diff)
downloadnixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar.gz
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar.bz2
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar.lz
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar.xz
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.tar.zst
nixpkgs-0af966f3681e7608b3afaf6a68713c7d87ed68a0.zip
gmsh: Enable OpenMP support
As this is parallelism that essentially comes for free.
-rw-r--r--pkgs/applications/science/math/gmsh/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index 0ae213e6013..f88e59857aa 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
   cmakeFlags = [
     "-DENABLE_BUILD_SHARED=ON"
     "-DENABLE_BUILD_DYNAMIC=ON"
+    "-DENABLE_OPENMP=ON"
   ];
 
   nativeBuildInputs = [ cmake gfortran ];