me
/
guix
Archived
1
0
Fork 0

gnu: fio: Disable native CPU compiler optimizations.

* gnu/packages/benchmark.scm (fio)[arguments]: Add #:configure-flags.  Adjust
configure phase accordingly.
master
Marius Bakke 2021-11-06 00:09:30 +01:00
parent 75f2eb41cc
commit 290a7664b5
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 4 deletions

View File

@ -65,15 +65,17 @@
`(#:modules (,@%gnu-build-system-modules
(ice-9 textual-ports))
#:test-target "test"
#:configure-flags '("--disable-native") ;don't generate code for the build CPU
#:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(lambda* (#:key (configure-flags ''()) outputs #:allow-other-keys)
;; The configure script doesn't understand some of the
;; GNU options, so we can't use #:configure-flags.
;; GNU options, so we can't use the stock phase.
(let ((out (assoc-ref outputs "out")))
(invoke "./configure"
(string-append "--prefix=" out)))))
(apply invoke "./configure"
(string-append "--prefix=" out)
configure-flags))))
;; The main `fio` executable is fairly small and self contained.
;; Moving the auxiliary scripts to a separate output saves ~100 MiB
;; on the closure.