buildroot/package/lightning/Config.in
Bernd Kuhls 7714693a12 package/lightning: bump version to 2.1.3
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>
2019-10-07 22:50:59 +02:00

33 lines
924 B
Plaintext

comment "lightning needs a toolchain w/ dynamic library"
depends on BR2_sparc || BR2_i386 || BR2_x86_64 || BR2_mips || \
BR2_mipsel || BR2_arm || BR2_powerpc || BR2_RISCV_64
depends on BR2_STATIC_LIBS
config BR2_PACKAGE_LIGHTNING
bool "lightning"
depends on BR2_sparc || BR2_i386 || BR2_x86_64 || BR2_mips || \
BR2_mipsel || BR2_arm || BR2_powerpc || BR2_RISCV_64
depends on !BR2_STATIC_LIBS
help
GNU lightning is a library that generates
assembly language code at run-time.
https://www.gnu.org/software/lightning/
if BR2_PACKAGE_LIGHTNING
config BR2_PACKAGE_LIGHTNING_DISASSEMBLER
bool "enable disassembler"
depends on !BR2_nios2 # binutils
depends on BR2_USE_WCHAR # binutils
select BR2_PACKAGE_BINUTILS
select BR2_PACKAGE_ZLIB
help
Enable the GNU lightning disassembler.
comment "lightning disassembler needs a toolchain w/ wchar"
depends on !BR2_nios2
depends on !BR2_USE_WCHAR
endif