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 @@ late.")
|
||||||
" *lmonpl = '\\0'"))
|
" *lmonpl = '\\0'"))
|
||||||
#t))))
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(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
|
(inputs
|
||||||
(list openmpi
|
(list openmpi
|
||||||
munge
|
munge
|
||||||
|
@ -4439,7 +4442,7 @@ late.")
|
||||||
libelf
|
libelf
|
||||||
libgcrypt
|
libgcrypt
|
||||||
libgpg-error))
|
libgpg-error))
|
||||||
(synopsis "Infrastructue for large scale tool daemon launching")
|
(synopsis "Infrastructure for large-scale tool daemon launching")
|
||||||
(description
|
(description
|
||||||
"LaunchMON is a software infrastructure that enables HPC run-time
|
"LaunchMON is a software infrastructure that enables HPC run-time
|
||||||
tools to co-locate tool daemons with a parallel job. Its API allows a
|
tools to co-locate tool daemons with a parallel job. Its API allows a
|
||||||
|
|
Reference in a new issue