Skip to content

Commit

Permalink
linbox: drop withSage
Browse files Browse the repository at this point in the history
--enable-sage was removed a while ago
linbox-team/linbox#146
  • Loading branch information
Feyorsh committed Sep 2, 2024
1 parent 466e1f8 commit 27ad665
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/science/math/sage/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let
inherit flint3;
inherit sage-src env-locations singular;
inherit (maxima) lisp-compiler;
linbox = pkgs.linbox.override { withSage = true; };
linbox = pkgs.linbox;
pkg-config = pkgs.pkg-config; # not to confuse with pythonPackages.pkg-config
};

Expand Down
3 changes: 0 additions & 3 deletions pkgs/development/libraries/linbox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
, lapack
, fflas-ffpack
, gmpxx
, withSage ? false # sage support
}:

assert (!blas.isILP64) && (!lapack.isILP64);
Expand Down Expand Up @@ -56,8 +55,6 @@ stdenv.mkDerivation rec {
"--${if stdenv.hostPlatform.avx2Support then "enable" else "disable"}-avx2"
"--${if stdenv.hostPlatform.fmaSupport then "enable" else "disable"}-fma"
"--${if stdenv.hostPlatform.fma4Support then "enable" else "disable"}-fma4"
] ++ lib.optionals withSage [
"--enable-sage"
];

# https://github.com/linbox-team/linbox/issues/304
Expand Down

0 comments on commit 27ad665

Please sign in to comment.