1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: bonnie++: Build with default gcc.

* gnu/packages/benchmark.scm (bonnie++)[native-inputs]: Remove gcc-10.
[arguments]: Add make-flag to set the C++ standard used.

Change-Id: I60cb90bee7dd86953e46af8917289ea006f47fac
This commit is contained in:
Efraim Flashner
2026-03-23 11:04:30 +02:00
parent ef19fda1a3
commit 0398efc96f

View File

@@ -278,8 +278,11 @@ tests.")
"03lg8rz2a9wgwn9axd6gkjiswgxmp62fbxjvrrcvazmwh6ykplx8"))))
(build-system gnu-build-system)
(native-inputs
(list gcc-10 perl))
(arguments '(#:tests? #f)) ; there are no tests
(list perl))
(arguments
(list
#:tests? #f ; there are no tests
#:make-flags #~(list "MORECFLAGS=-std=c++11")))
(home-page "https://doc.coker.com.au/projects/bonnie/")
(synopsis "Hard drive and file system benchmark suite")
(description