1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 11:32:21 +02:00

gnu: glpk: Don't build static library.

* gnu/packages/maths.scm (glpk)[arguments]: Add configure-flag to skip
static library.
This commit is contained in:
Efraim Flashner
2020-12-17 21:46:40 +02:00
parent 885fe927e7
commit 9a6cf550bd
+2 -1
View File
@@ -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