7714693a12
https://lists.gnu.org/archive/html/lightning/2019-09/msg00033.html "2.1.3 main features are the new RISC-V port, currently supporting only Linux 64 bit" Build-tested using this defconfig: BR2_riscv=y BR2_TOOLCHAIN_BUILDROOT_MUSL=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_PACKAGE_LIGHTNING=y BR2_PACKAGE_LIGHTNING_DISASSEMBLER=y Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Acked-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
522 B
Makefile
19 lines
522 B
Makefile
################################################################################
|
|
#
|
|
# lightning
|
|
#
|
|
################################################################################
|
|
|
|
LIGHTNING_VERSION = 2.1.3
|
|
LIGHTNING_SITE = $(BR2_GNU_MIRROR)/lightning
|
|
LIGHTNING_LICENSE = LGPL-3.0+
|
|
LIGHTNING_LICENSE_FILES = COPYING.LESSER
|
|
LIGHTNING_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTNING_DISASSEMBLER),y)
|
|
LIGHTNING_DEPENDENCIES += binutils zlib
|
|
LIGHTNING_CONF_OPTS += --enable-disassembler
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|