lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

p4est-sc: use mpiCheckPhaseHook

+6 -6
+5 -5
pkgs/development/libraries/science/math/p4est-sc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 1 + { lib, stdenv, fetchFromGitHub, mpiCheckPhaseHook 2 2 , autoreconfHook, pkg-config 3 3 , p4est-sc-debugEnable ? true, p4est-sc-mpiSupport ? true 4 4 , mpi, openssh, zlib ··· 47 47 enableParallelBuilding = true; 48 48 makeFlags = [ "V=0" ]; 49 49 50 - preCheck = '' 51 - export OMPI_MCA_rmaps_base_oversubscribe=1 52 - export HYDRA_IFACE=lo 53 - ''; 50 + nativeCheckInputs = lib.optionals mpiSupport [ 51 + mpiCheckPhaseHook 52 + openssh 53 + ]; 54 54 55 55 # disallow Darwin checks due to prototype incompatibility of qsort_r 56 56 # to be fixed in a future version of the source code
+1 -1
pkgs/development/libraries/science/math/p4est/default.nix
··· 46 46 ++ lib.optional withMetis "--with-metis" 47 47 ; 48 48 49 - inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding preCheck doCheck; 49 + inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding doCheck; 50 50 51 51 meta = { 52 52 branch = "prev3-develop";