mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add openmpi-c++.
* gnu/packages/mpi.scm (openmpi-c++): New variable.
This commit is contained in:
parent
df4f960cb8
commit
2d6be35ea2
1 changed files with 11 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Paul Garlick <pgarlick@tourbillion-technology.com>
|
||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -310,6 +310,16 @@ (define-public openmpi
|
|||
;; See file://LICENSE
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public openmpi-c++
|
||||
(package/inherit openmpi
|
||||
(name "openmpi-c++")
|
||||
(outputs '("out"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments openmpi)
|
||||
((#:configure-flags flags)
|
||||
`(cons "--enable-mpi-cxx" ,flags))))
|
||||
(synopsis "C++ bindings for MPI")))
|
||||
|
||||
;; TODO: javadoc files contain timestamps.
|
||||
(define-public java-openmpi
|
||||
(package/inherit openmpi
|
||||
|
|
Loading…
Reference in a new issue