added my Recipes
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
SUMMARY = "Message Passing Interface (MPI) implementation"
|
||||
HOMEPAGE = "http://www.mpich.org/"
|
||||
SECTION = "devel"
|
||||
|
||||
LICENSE = "BSD-2-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=bd4d7ab13df98988b1ca2a4e01c8c163"
|
||||
|
||||
SRC_URI = "http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz"
|
||||
SRC_URI[sha256sum] = "17406ea90a6ed4ecd5be39c9ddcbfac9343e6ab4f77ac4e8c5ebe4a3e3b6c501"
|
||||
|
||||
RDEPENDS:${PN} += "bash perl libxml2"
|
||||
|
||||
EXTRA_OECONF = "--enable-debuginfo \
|
||||
--enable-fast \
|
||||
--enable-shared \
|
||||
--with-pm=gforker \
|
||||
--disable-rpath \
|
||||
--disable-f77 \
|
||||
--disable-fc \
|
||||
--disable-fortran \
|
||||
--disable-cxx \
|
||||
BASH_SHELL='${USRBINPATH}/env bash' \
|
||||
PERL='${USRBINPATH}/env perl' \
|
||||
--with-device=ch3:nemesis \
|
||||
--with-rdmacm=no \
|
||||
--disable-numa \
|
||||
"
|
||||
|
||||
PACKAGECONFIG += " \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
|
||||
"
|
||||
PACKAGECONFIG[x11] = "--with-x --x-includes=${STAGING_INCDIR} --x-libraries=${STAGING_LIBDIR},--without-x,virtual/libx11"
|
||||
|
||||
# libmpi.so needs symbols like __multf3 and somehow it does not respect --rtlib option passed by clang
|
||||
LDFLAGS:append:x86-64 = " -lgcc"
|
||||
LDFLAGS:append:x86 = " -lgcc"
|
||||
|
||||
inherit autotools gettext pkgconfig
|
||||
|
||||
do_configure() {
|
||||
for d in confdb test/mpi test/mpi/confdb src/pm/hydra/confdb \
|
||||
src/pm/hydra/tools/topo/hwloc/hwloc/config src/pm/hydra/mpl/confdb \
|
||||
modules/yaksa/m4 modules/json-c modules/ucx modules/hwloc/config \
|
||||
test/mpi/dtpools/confdb src/mpl/confdb src/mpi/romio/confdb; do
|
||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/$d
|
||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/$d
|
||||
done
|
||||
# cd ${S}
|
||||
# autoupdate
|
||||
# autoreconf --verbose --install --force
|
||||
# cd ${B}
|
||||
oe_runconf
|
||||
}
|
||||
|
||||
do_install:append() {
|
||||
sed -i 's,${S}/,,g' ${D}/${libdir}/libmpi.la
|
||||
sed -i 's,${DEBUG_PREFIX_MAP},,g' ${D}/${libdir}/pkgconfig/mpich.pc
|
||||
}
|
||||
Reference in New Issue
Block a user