Add icc in mcxx to enable imc* wrappers

This commit is contained in:
Rodrigo Arias Mallo 2020-07-10 13:17:45 +02:00
parent fdc8b68d9a
commit 114a6b081f
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,7 @@
, flex , flex
, bison , bison
, gcc , gcc
, icc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -37,6 +38,7 @@ stdenv.mkDerivation rec {
bison bison
flex flex
gcc gcc
icc
]; ];
configureFlags = [ configureFlags = [

View File

@ -36,6 +36,7 @@ let
}; };
# Default Intel MPI version is 2019 (the last one) # Default Intel MPI version is 2019 (the last one)
impi = intel-mpi;
intel-mpi = intel-mpi-2019; intel-mpi = intel-mpi-2019;
intel-mpi-2019 = callPackage ./bsc/intel-mpi/default.nix { intel-mpi-2019 = callPackage ./bsc/intel-mpi/default.nix {
# Intel MPI provides a debug version of the MPI library, but # Intel MPI provides a debug version of the MPI library, but
@ -70,6 +71,7 @@ let
}; };
mcxx = callPackage ./bsc/mcxx/default.nix { mcxx = callPackage ./bsc/mcxx/default.nix {
icc = icc;
stdenv = pkgs.gcc9Stdenv; stdenv = pkgs.gcc9Stdenv;
nanos6 = nanos6-git; nanos6 = nanos6-git;
}; };