gnu: launchmon: Fix compilation with GCC 11.
* gnu/packages/admin.scm (launchmon)[arguments]: New field. Change-Id: I30665896ef90e74b91055c85bcfe991af24f3a38
This commit is contained in:
parent
f8cad88615
commit
aaee0e4af3
1 changed files with 4 additions and 1 deletions
|
@ -4432,6 +4432,9 @@ (define-public launchmon
|
|||
" *lmonpl = '\\0'"))
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; GCC 11 defaults to c++17 but this package needs something older.
|
||||
(list #:configure-flags #~'("CXXFLAGS=-std=c++14 -O2 -g")))
|
||||
(inputs
|
||||
(list openmpi
|
||||
munge
|
||||
|
@ -4439,7 +4442,7 @@ (define-public launchmon
|
|||
libelf
|
||||
libgcrypt
|
||||
libgpg-error))
|
||||
(synopsis "Infrastructue for large scale tool daemon launching")
|
||||
(synopsis "Infrastructure for large-scale tool daemon launching")
|
||||
(description
|
||||
"LaunchMON is a software infrastructure that enables HPC run-time
|
||||
tools to co-locate tool daemons with a parallel job. Its API allows a
|
||||
|
|
Loading…
Reference in a new issue