[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: openmpi: Use our hwloc.
From: |
Eric Bavier |
Subject: |
[PATCH] gnu: openmpi: Use our hwloc. |
Date: |
Mon, 12 May 2014 16:45:27 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) |
The attached patch should allow openmpi to build for i686 (i.e. it was
able to build on my machine for --system=i686-linux).
>From f6c7613f1995a760a3f0f1da35d0135d55c932e0 Mon Sep 17 00:00:00 2001
From: Eric Bavier <address@hidden>
Date: Mon, 12 May 2014 16:43:04 -0500
Subject: [PATCH] gnu: openmpi: Use our hwloc.
* gnu/packages/mpi.scm (hwloc): Propagate numactl.
(openmpi)[inputs]: Add hwloc.
[native-inputs]: Add pkg-config.
[argument]: Add hwloc configure flags.
---
gnu/packages/mpi.scm | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 0712292..37b7858 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -51,16 +51,16 @@
;; Enable libpci support, which effectively makes hwloc GPLv2+.
'(#:configure-flags '("--enable-libpci")))
(inputs
- `(("numactl" ,numactl)
- ("libx11" ,libx11)
+ `(("libx11" ,libx11)
("cairo" ,cairo)
("ncurses" ,ncurses)
("expat" ,expat)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(propagated-inputs
- ;; 'hwloc.pc' refers to libpci, hence the propagation.
- `(("pciutils" ,pciutils)))
+ ;; 'hwloc.pc' refers to libpci and libnuma, hence the propagation.
+ `(("numactl" ,numactl)
+ ("pciutils" ,pciutils)))
(home-page "http://www.open-mpi.org/projects/hwloc/")
(synopsis "Abstraction of hardware architectures")
(description
@@ -94,11 +94,14 @@ bind processes, and much more.")
(base32
"13z1q69f3qwmmhpglarfjminfy2yw4rfqr9jydjk5507q3mjf50p"))))
(build-system gnu-build-system)
- ;; TODO: Use our hwloc instead of the bundled one.
+ (inputs
+ `(("hwloc" ,hwloc)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
(propagated-inputs
`(("gfortran" ,gfortran-4.8)))
(arguments
- `(#:configure-flags '("--enable-static"
+ `(#:configure-flags `("--enable-static"
"--enable-oshmem"
;; Thread support causes some applications to hang
;; "--enable-event-thread-support"
@@ -106,7 +109,9 @@ bind processes, and much more.")
;; "--enable-orte-progress-threads"
;; "--enable-mpi-thread-multiple"
"--enable-mpi-ext=all"
- "--with-devel-headers")))
+ "--with-devel-headers"
+ ,(string-append "--with-hwloc="
+ (assoc-ref %build-inputs
"hwloc")))))
(home-page "http://www.open-mpi.org")
(synopsis "MPI-2 implementation")
(description
--
1.7.9.5
--
`~Eric
- [PATCH] gnu: openmpi: Use our hwloc.,
Eric Bavier <=