2020-06-08 18:01:33 +02:00
|
|
|
{
|
|
|
|
stdenv
|
2022-09-01 16:27:29 +02:00
|
|
|
, lib
|
2020-11-19 18:50:30 +01:00
|
|
|
, fetchFromGitHub
|
2020-06-08 18:01:33 +02:00
|
|
|
, automake
|
|
|
|
, autoconf
|
2020-11-19 18:50:30 +01:00
|
|
|
, autoreconfHook
|
2020-06-08 18:01:33 +02:00
|
|
|
, libtool
|
|
|
|
, pkg-config
|
|
|
|
, numactl
|
|
|
|
, hwloc
|
|
|
|
, papi
|
2020-06-09 18:21:02 +02:00
|
|
|
, extrae
|
2020-06-08 18:01:33 +02:00
|
|
|
, boost
|
2021-06-30 16:33:51 +02:00
|
|
|
, babeltrace2
|
2023-03-02 18:10:06 +01:00
|
|
|
, ovni
|
2021-03-03 19:05:33 +01:00
|
|
|
, enableJemalloc ? true
|
2020-11-19 18:50:30 +01:00
|
|
|
, jemalloc ? null
|
|
|
|
, cachelineBytes ? 64
|
2021-03-11 17:56:12 +01:00
|
|
|
, enableGlibcxxDebug ? false
|
2020-06-08 18:01:33 +02:00
|
|
|
}:
|
|
|
|
|
2021-03-03 19:05:33 +01:00
|
|
|
assert enableJemalloc -> (jemalloc != null);
|
|
|
|
|
2022-09-01 16:27:29 +02:00
|
|
|
with lib;
|
2020-06-08 18:01:33 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nanos6";
|
2023-03-02 18:10:06 +01:00
|
|
|
version = "2.8";
|
2020-06-08 18:01:33 +02:00
|
|
|
|
2020-11-19 18:50:30 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bsc-pm";
|
|
|
|
repo = "nanos6";
|
|
|
|
rev = "version-${version}";
|
2023-03-02 18:10:06 +01:00
|
|
|
sha256 = "YGj/cubqXaNt4lR2CnSU+nXvi+SdB56EXLhfN/ufjHs=";
|
2020-06-08 18:01:33 +02:00
|
|
|
};
|
|
|
|
|
2020-11-19 18:50:30 +01:00
|
|
|
prePatch = ''
|
|
|
|
patchShebangs scripts/generate_config.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-06-08 18:01:33 +02:00
|
|
|
preConfigure = ''
|
2020-11-19 18:50:30 +01:00
|
|
|
export CACHELINE_WIDTH=${toString cachelineBytes}
|
2020-06-08 18:01:33 +02:00
|
|
|
'';
|
|
|
|
|
2023-03-02 18:10:06 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-babeltrace2=${babeltrace2}"
|
|
|
|
"--with-ovni=${ovni}"
|
|
|
|
] ++
|
2021-06-30 16:33:51 +02:00
|
|
|
(optional enableJemalloc "--with-jemalloc=${jemalloc}") ++
|
|
|
|
(optional enableGlibcxxDebug "CXXFLAGS=-D_GLIBCXX_DEBUG");
|
2020-06-15 11:54:22 +02:00
|
|
|
|
2020-11-19 18:50:30 +01:00
|
|
|
# The "bindnow" flags are incompatible with ifunc resolution mechanism. We
|
|
|
|
# disable all by default, which includes bindnow.
|
|
|
|
hardeningDisable = [ "all" ];
|
2020-06-08 18:01:33 +02:00
|
|
|
|
2022-02-23 20:05:47 +01:00
|
|
|
# Keep debug symbols in the verbose variant of the library
|
|
|
|
dontStrip = true;
|
|
|
|
|
2020-06-08 18:01:33 +02:00
|
|
|
buildInputs = [
|
2020-11-19 18:50:30 +01:00
|
|
|
autoreconfHook
|
2020-06-08 18:01:33 +02:00
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
libtool
|
|
|
|
pkg-config
|
|
|
|
boost
|
|
|
|
numactl
|
|
|
|
hwloc
|
2021-06-30 16:33:51 +02:00
|
|
|
papi
|
|
|
|
babeltrace2
|
2023-03-02 18:10:06 +01:00
|
|
|
ovni
|
2021-06-30 16:33:51 +02:00
|
|
|
] ++ (if (extrae != null) then [extrae] else []);
|
2020-06-08 18:01:33 +02:00
|
|
|
|
|
|
|
}
|