mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
7c68663619
Since commit 783fb88f@openembedded-core, out-of-tree builds of cmake-based recipes are the default, and the variables OECMAKE_BUILDPATH and OECMAKE_SOURCEPATH were deprecated. With the commit 2c23d7ab@openembedded-core, the variable OECMAKE_SOURCEPATH was put back into action, but this causes the libeigen recipe to fail as OECMAKE_SOURCEPATH is set in the recipe, but OECMAKE_BUILDPATH is set to the bbclass default. This commit simply removes both variables from the libeigen recipe and hence sets the recipe to do a default out-of-tree build. This resolves the build failure of libeigen with 2c23d7ab@openembedded-core, and furthermore, the adjusted recipe still works with the cmake.bbclass of 783fb88f@openembedded-core. The build failure was discovered during the regression testing of the meta-ros layer. The exact build error message and its investigation is recorded in issue #276 of the meta-ros issue tracker at https://github.com/bmwcarit/meta-ros/issues/276. Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> Tested-by: Ash Charles <ashcharles@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
23 lines
877 B
BlitzBasic
23 lines
877 B
BlitzBasic
DESCRIPTION = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms."
|
|
AUTHOR = "Benoît Jacob and Gaël Guennebaud and others"
|
|
HOMEPAGE = "http://eigen.tuxfamily.org/"
|
|
LICENSE = "MPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING.MPL2;md5=815ca599c9df247a0c7f619bab123dad"
|
|
|
|
SRC_URI = "http://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 \
|
|
file://eigen-disable-tests.patch"
|
|
SRC_URI[md5sum] = "894381be5be65bb7099c6fd91d61b357"
|
|
SRC_URI[sha256sum] = "011f78960d939227f9276173d0c4cc0053bb9e0a7356539a9a6c7c89d984fab6"
|
|
|
|
S = "${WORKDIR}/eigen-eigen-ffa86ffb5570"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-Dpkg_config_libdir=${libdir}"
|
|
|
|
FILES_${PN} = "${includedir} ${libdir}"
|
|
|
|
# ${PN} is empty so we need to tweak -dev and -dbg package dependencies
|
|
RDEPENDS_${PN}-dev = ""
|
|
RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|