Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit 1ae5acfe6a - Show all commits

View File

@@ -12,6 +12,7 @@
, nbx ? null
, nby ? null
, nbz ? null
, nsteps ? null
, vectFlags ? null
, cachelineBytes ? 64
}:
@@ -63,6 +64,7 @@ stdenv.mkDerivation rec {
] ++ optional (nbx != null) "NB_X=${toString nbx}"
++ optional (nby != null) "NB_Y=${toString nby}"
++ optional (nbz != null) "NB_Z=${toString nbz}"
++ optional (nsteps != null) "NSTEPS=${toString nsteps}"
++ optional (numComm != null) "NUM_COMM=${toString numComm}"
++ optional (vectFlags != null) "VECT_FLAGS=${toString vectFlags}"
;