2019-04-21 18:06:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, autoreconfHook, gmpxx }:
|
2016-10-10 15:31:38 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "givaro";
|
2019-05-11 15:09:07 +01:00
|
|
|
version = "4.1.0";
|
2016-10-10 15:31:38 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linbox-team";
|
|
|
|
repo = "${pname}";
|
|
|
|
rev = "v${version}";
|
2019-05-11 15:09:07 +01:00
|
|
|
sha256 = "1l1172c964hni66mjdmhr7766l5k7y63zs3hgcpr10a8f1nx3iwp";
|
2016-10-10 15:31:38 +01:00
|
|
|
};
|
2018-08-14 01:13:40 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [autoconf automake libtool gmpxx];
|
2018-08-14 01:13:40 +01:00
|
|
|
|
2018-03-07 23:05:52 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-optimization"
|
2019-04-21 18:06:50 +01:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isx86_64 {
|
2018-03-07 23:05:52 +00:00
|
|
|
# disable SIMD instructions (which are enabled *when available* by default)
|
2019-04-21 18:06:50 +01:00
|
|
|
"default" = [ "--disable-sse3" "--disable-ssse3" "--disable-sse41" "--disable-sse42" "--disable-avx" "--disable-avx2" "--disable-fma" "--disable-fma4" ];
|
|
|
|
"westmere" = [ "--disable-avx" "--disable-avx2" "--disable-fma" "--disable-fma4" ];
|
|
|
|
"sandybridge" = [ "--disable-avx2" "--disable-fma" "--disable-fma4" ];
|
|
|
|
"ivybridge" = [ "--disable-avx2" "--disable-fma" "--disable-fma4" ];
|
|
|
|
"haswell" = [ "--disable-fma4" ];
|
|
|
|
"broadwell" = [ "--disable-fma4" ];
|
|
|
|
"skylake" = [ "--disable-fma4" ];
|
|
|
|
"skylake-avx512" = [ "--disable-fma4" ];
|
|
|
|
}.${stdenv.hostPlatform.platform.gcc.arch or "default"};
|
2018-08-14 01:13:40 +01:00
|
|
|
|
|
|
|
# On darwin, tests are linked to dylib in the nix store, so we need to make
|
|
|
|
# sure tests run after installPhase.
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "check";
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-10-10 15:31:38 +01:00
|
|
|
meta = {
|
|
|
|
inherit version;
|
|
|
|
description = ''A C++ library for arithmetic and algebraic computations'';
|
|
|
|
license = stdenv.lib.licenses.cecill-b;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2018-08-14 01:13:40 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-10-10 15:31:38 +01:00
|
|
|
};
|
|
|
|
}
|