gnu: spindle: Fix compilation with GCC 11.

* gnu/packages/admin.scm (spindle)[arguments]: Add CXXFLAGS
to #:configure-flags.

Change-Id: I660228b8839a524791273f3fc7b6935d704b6715
This commit is contained in:
Ludovic Courtès 2023-11-14 20:11:47 +01:00
parent aaee0e4af3
commit 006f9f0f21
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -4469,7 +4469,9 @@ launch daemons into the relevant nodes.")
(build-system gnu-build-system)
(arguments '(#:configure-flags '("--enable-sec-launchmon"
"--enable-sec-munge"
"--enable-sec-none")))
"--enable-sec-none"
;; Fails to build as c++17.
"CXXFLAGS=-std=c++14 -O2 -g")))
(inputs
`(("mpi" ,openmpi)
("munge" ,munge)