bscpkgs/bsc/nanos6/default.nix

97 lines
2.0 KiB
Nix
Raw Normal View History

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
, libtool
, pkg-config
, numactl
, hwloc
, papi
, boost
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
, enableGlibcxxDebug ? false
, useGit ? false
, gitUrl ? "ssh://git@bscpm03.bsc.es/nanos6/nanos6"
, gitBranch ? "master"
, gitCommit ? "58712e669ac02f721fb841247361ea54f53a6a47"
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
let
release = rec {
version = "3.0";
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "nanos6";
rev = "version-${version}";
sha256 = "sha256-XEG8/8yQv5/OdSyK9Kig8xuWe6mTZ1eQKhXx3fXlQ1Y=";
};
};
2020-06-08 18:01:33 +02:00
git = rec {
version = src.shortRev;
src = builtins.fetchGit {
url = gitUrl;
ref = gitBranch;
rev = gitCommit;
};
2020-06-08 18:01:33 +02:00
};
source = if (useGit) then git else release;
in
stdenv.mkDerivation rec {
pname = "nanos6";
inherit (source) src version;
2020-11-19 18:50:30 +01:00
prePatch = ''
patchShebangs scripts/generate_config.sh
patchShebangs autogen.sh
'';
2020-11-19 18:50:30 +01:00
enableParallelBuilding = true;
2020-06-08 18:01:33 +02:00
preConfigure = ''
export CACHELINE_WIDTH=${toString cachelineBytes}
./autogen.sh
'' + lib.optionalString (useGit) ''
export NANOS6_GIT_VERSION=${src.rev}
export NANOS6_GIT_BRANCH=${gitBranch}
'';
2020-06-15 11:54:22 +02:00
configureFlags = [
"--with-hwloc=${hwloc}"
"--disable-all-instrumentations"
"--enable-ovni-instrumentation"
"--with-ovni=${ovni}"
] ++
(optional enableJemalloc "--with-jemalloc=${jemalloc}") ++
(optional enableGlibcxxDebug "CXXFLAGS=-D_GLIBCXX_DEBUG");
2020-06-08 18:01:33 +02:00
# The "bindnow" flags are incompatible with ifunc resolution mechanism. We
# disable all by default, which includes bindnow.
hardeningDisable = [ "all" ];
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 = [
autoconf
automake
libtool
pkg-config
boost
numactl
hwloc
papi
ovni
];
}