06a1ff4fd3
Bumped the version of eigen to 3.3.7, which fixes issues when compiling with GCC7 (notably int-in-bool-context errors, fixed in 3.3.5), in addition to various other issues noted in the eigen change logs: http://eigen.tuxfamily.org/index.php?title=ChangeLog Legal hashes are unchanged in 3.3.7 Signed-off-by: Reed Nightingale <reed.nightingale@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# eigen
|
|
#
|
|
################################################################################
|
|
|
|
EIGEN_VERSION = 3.3.7
|
|
EIGEN_SOURCE = $(EIGEN_VERSION).tar.bz2
|
|
EIGEN_SITE = https://bitbucket.org/eigen/eigen/get
|
|
EIGEN_LICENSE = MPL2, BSD-3-Clause, LGPL-2.1
|
|
EIGEN_LICENSE_FILES = COPYING.MPL2 COPYING.BSD COPYING.LGPL COPYING.README
|
|
EIGEN_INSTALL_STAGING = YES
|
|
EIGEN_INSTALL_TARGET = NO
|
|
EIGEN_DEST_DIR = $(STAGING_DIR)/usr/include/eigen3
|
|
|
|
ifeq ($(BR2_PACKAGE_EIGEN_UNSUPPORTED_MODULES),y)
|
|
define EIGEN_INSTALL_UNSUPPORTED_MODULES_CMDS
|
|
mkdir -p $(EIGEN_DEST_DIR)/unsupported
|
|
cp -a $(@D)/unsupported/Eigen $(EIGEN_DEST_DIR)/unsupported
|
|
endef
|
|
endif
|
|
|
|
# Generate the .pc file at build time
|
|
define EIGEN_BUILD_CMDS
|
|
sed -r -e 's,^Version: .*,Version: $(EIGEN_VERSION),' \
|
|
-e 's,^Cflags: .*,Cflags: -I$$\{prefix\}/include/eigen3,' \
|
|
-e 's,^prefix.*,prefix=/usr,' \
|
|
$(@D)/eigen3.pc.in >$(@D)/eigen3.pc
|
|
endef
|
|
|
|
# This package only consists of headers that need to be
|
|
# copied over to the sysroot for compile time use
|
|
define EIGEN_INSTALL_STAGING_CMDS
|
|
$(RM) -r $(EIGEN_DEST_DIR)
|
|
mkdir -p $(EIGEN_DEST_DIR)
|
|
cp -a $(@D)/Eigen $(EIGEN_DEST_DIR)
|
|
$(EIGEN_INSTALL_UNSUPPORTED_MODULES_CMDS)
|
|
$(INSTALL) -D -m 0644 $(@D)/eigen3.pc \
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/eigen3.pc
|
|
endef
|
|
|
|
$(eval $(generic-package))
|