From 30630a74be1c8256d6b412fdcdc3810a78c6d7b9 Mon Sep 17 00:00:00 2001 From: Sandra Date: Wed, 7 Oct 2020 11:38:02 +0200 Subject: [PATCH] Saiph: Vectorisation compiler info flags --- garlic/saiph/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/garlic/saiph/default.nix b/garlic/saiph/default.nix index 3028042..c8a8a0a 100644 --- a/garlic/saiph/default.nix +++ b/garlic/saiph/default.nix @@ -8,6 +8,8 @@ , boost , gitBranch ? "master" , numComm ? null +, vectFlags ? null +#, breakpointHook }: stdenv.mkDerivation rec { @@ -33,6 +35,7 @@ stdenv.mkDerivation rec { cc vtk boost +# breakpointHook ]; # Required for nanos6 @@ -50,6 +53,7 @@ stdenv.mkDerivation rec { "apps" "APP=ExHeat3D" ( if (numComm != null) then "NUM_COMM=${toString numComm}" else "" ) + ( if (vectFlags != null) then "VECT_FLAGS=${toString vectFlags}" else "" ) ]; installPhase = ''