From 0398efc96f71c571bd37bea25f58ecb59709d1e5 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 23 Mar 2026 11:04:30 +0200 Subject: [PATCH] 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 --- gnu/packages/benchmark.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index abadaf745c..be295b0a9a 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