me
/
guix
Archived
1
0
Fork 0

gnu: glpk: Don't build static library.

* gnu/packages/maths.scm (glpk)[arguments]: Add configure-flag to skip
static library.
master
Efraim Flashner 2020-12-17 21:46:40 +02:00
parent 885fe927e7
commit 9a6cf550bd
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 1 deletions

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