d9ac60d52a
For change log since 3.3.7: - https://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.8 - https://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.9 - https://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.4.0 This commit slightly change the logic defining CMAKE_Fortran_COMPILER in CONF_OPTS to set it only if BR2_TOOLCHAIN_HAS_FORTRAN=y. This is because eigen cmake file fails if CMAKE_Fortran_COMPILER is set to a non-existing fortran compiler. Note: COPYING.BSD hash changed due to the addition of a new-line at the end of the file. The content of the file did not changed. Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
25 lines
840 B
Makefile
25 lines
840 B
Makefile
################################################################################
|
|
#
|
|
# eigen
|
|
#
|
|
################################################################################
|
|
|
|
EIGEN_VERSION = 3.4.0
|
|
EIGEN_SOURCE = eigen-$(EIGEN_VERSION).tar.bz2
|
|
EIGEN_SITE = $(call gitlab,libeigen,eigen,$(EIGEN_VERSION))
|
|
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_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
# Default Eigen CMake installs .pc file in /usr/share/pkgconfig
|
|
# change it to /usr/lib/pkgconfig, to be consistent with other packages.
|
|
EIGEN_CONF_OPTS = -DPKGCONFIG_INSTALL_DIR=/usr/lib/pkgconfig
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_FORTRAN),y)
|
|
EIGEN_CONF_OPTS += -DCMAKE_Fortran_COMPILER=$(TARGET_FC)
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|