diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-12-17 21:46:40 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-12-17 22:26:30 +0200 |
commit | 9a6cf550bd2d22107bd60e6f8e85b3064403956c (patch) | |
tree | 3e81c5e109de7023d2025c44dd78a270b89e6465 | |
parent | 885fe927e7648e6a7349acff163c0015bc3ab732 (diff) | |
download | guix-9a6cf550bd2d22107bd60e6f8e85b3064403956c.tar.gz guix-9a6cf550bd2d22107bd60e6f8e85b3064403956c.zip |
gnu: glpk: Don't build static library.
* gnu/packages/maths.scm (glpk)[arguments]: Add configure-flag to skip
static library.
-rw-r--r-- | gnu/packages/maths.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 794111afc4..5dbd8b8b51 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -575,7 +575,8 @@ It can utilize SIMD instructions that are available on modern processors.") (inputs `(("gmp" ,gmp))) (arguments - `(#:configure-flags '("--with-gmp"))) + `(#:configure-flags '("--with-gmp" + "--disable-static"))) (home-page "https://www.gnu.org/software/glpk/") (synopsis "GNU Linear Programming Kit, supporting the MathProg language") (description |