summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-03-23 11:04:30 +0200
committerEfraim Flashner <efraim@flashner.co.il>2026-03-23 13:58:39 +0200
commit0398efc96f71c571bd37bea25f58ecb59709d1e5 (patch)
tree43fb5b305e4f8f7fab8fca49d23518ca4badffb7 /gnu/packages
parentef19fda1a39bf2bb6830942441ed2e20605adf58 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/benchmark.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm
index abadaf745c5..be295b0a9a1 100644
--- a/gnu/packages/benchmark.scm
+++ b/gnu/packages/benchmark.scm
@@ -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