2020-07-20 12:58:54 +02:00
|
|
|
{
|
|
|
|
stdenv
|
2020-10-30 15:21:23 +01:00
|
|
|
, mpi ? null
|
|
|
|
, tampi ? null
|
|
|
|
, mcxx ? null
|
|
|
|
, cc
|
|
|
|
, gitBranch
|
2020-07-20 12:58:54 +02:00
|
|
|
}:
|
|
|
|
|
2020-10-30 15:21:23 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
assert !(tampi != null && mcxx == null);
|
|
|
|
|
2020-07-20 12:58:54 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-04 11:17:15 +01:00
|
|
|
name = "fwi";
|
2020-07-20 12:58:54 +02:00
|
|
|
|
|
|
|
src = builtins.fetchGit {
|
|
|
|
url = "https://gitlab.com/srodrb/BSC-FWI.git";
|
2020-10-30 15:21:23 +01:00
|
|
|
ref = "${gitBranch}";
|
2020-07-20 12:58:54 +02:00
|
|
|
};
|
|
|
|
|
2020-07-20 15:32:00 +02:00
|
|
|
enableParallelBuilding = true;
|
2020-07-20 12:58:54 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
2020-10-30 15:21:23 +01:00
|
|
|
cc
|
|
|
|
]
|
|
|
|
++ optional (mpi != null) mpi
|
|
|
|
++ optional (tampi != null) tampi
|
|
|
|
++ optional (mcxx != null) mcxx;
|
2020-07-20 12:58:54 +02:00
|
|
|
|
2020-07-20 15:32:00 +02:00
|
|
|
# FIXME: This is an ugly hack.
|
|
|
|
# When using _GNU_SOURCE or any other definition used in features.h, we need
|
|
|
|
# to define them before mcc includes nanos6.h from the command line. So the
|
|
|
|
# only chance is by setting it at the command line with -D. Using the DEFINES
|
|
|
|
# below, reaches the command line of the preprocessing stage with gcc.
|
2020-12-04 11:17:15 +01:00
|
|
|
preConfigure = ''
|
2020-07-20 15:32:00 +02:00
|
|
|
export DEFINES=-D_GNU_SOURCE
|
2020-12-04 11:17:15 +01:00
|
|
|
export NANOS6_CONFIG_OVERRIDE=version.debug=true
|
|
|
|
'';
|
|
|
|
|
|
|
|
# We compile the ModelGenerator using gcc *only*, as otherwise it will
|
|
|
|
# be compiled with nanos6, which requires access to /sys to determine
|
|
|
|
# hardware capabilities. So it will fail in the nix-build environment,
|
|
|
|
# as there is no /sys mounted.
|
|
|
|
preBuild = ''
|
|
|
|
make COMPILER=GNU ModelGenerator
|
2020-07-20 15:32:00 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [
|
2020-10-30 15:21:23 +01:00
|
|
|
"CC=${cc.cc.CC}"
|
2020-07-20 15:32:00 +02:00
|
|
|
];
|
|
|
|
|
2020-10-30 15:21:23 +01:00
|
|
|
postBuild = ''
|
|
|
|
make input
|
|
|
|
'';
|
|
|
|
|
|
|
|
#FIXME split the input in another derivation
|
2020-07-20 12:58:54 +02:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2020-12-04 11:17:15 +01:00
|
|
|
cp fwi $out/bin
|
2020-07-20 12:58:54 +02:00
|
|
|
cp ModelGenerator $out/bin
|
2020-10-30 15:21:23 +01:00
|
|
|
mv InputModels $out/bin
|
|
|
|
mkdir -p $out/etc/fwi
|
|
|
|
cp SetupParams/{fwi_frequencies.txt,fwi_params.txt} $out/etc/fwi
|
2020-07-20 12:58:54 +02:00
|
|
|
'';
|
2020-10-30 15:21:23 +01:00
|
|
|
|
|
|
|
programPath = "/bin/fwi";
|
2020-07-20 12:58:54 +02:00
|
|
|
}
|