gmp-4.3.2.nix: disable test suite to fix the build
The test t-lucnum_ui fails (on Linux/x86_64) when built with GCC 4.8. Newer versions of GMP don't have that issue anymore.
This commit is contained in:
parent
e9b30710a4
commit
e4f9d6b396
|
@ -23,7 +23,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";
|
configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";
|
||||||
|
|
||||||
doCheck = true;
|
# The test t-lucnum_ui fails (on Linux/x86_64) when built with GCC 4.8.
|
||||||
|
# Newer versions of GMP don't have that issue anymore.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GMP, the GNU multiple precision arithmetic library";
|
description = "GMP, the GNU multiple precision arithmetic library";
|
||||||
|
|
Loading…
Reference in New Issue