Config.in 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. comment "lightning needs a toolchain w/ dynamic library, threads"
  2. depends on BR2_sparc || BR2_i386 || BR2_x86_64 || BR2_mips || \
  3. BR2_mipsel || BR2_arm || BR2_powerpc || BR2_RISCV_64 || \
  4. BR2_mips64 || BR2_mips64el
  5. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
  6. config BR2_PACKAGE_LIGHTNING
  7. bool "lightning"
  8. depends on BR2_sparc || BR2_i386 || BR2_x86_64 || BR2_mips || \
  9. BR2_mipsel || BR2_arm || BR2_powerpc || BR2_RISCV_64 || \
  10. BR2_mips64 || BR2_mips64el
  11. depends on !BR2_STATIC_LIBS
  12. depends on BR2_TOOLCHAIN_HAS_THREADS
  13. help
  14. GNU lightning is a library that generates
  15. assembly language code at run-time.
  16. https://www.gnu.org/software/lightning/
  17. if BR2_PACKAGE_LIGHTNING
  18. config BR2_PACKAGE_LIGHTNING_DISASSEMBLER
  19. bool "enable disassembler"
  20. depends on !BR2_nios2 # binutils
  21. depends on BR2_USE_WCHAR # binutils
  22. select BR2_PACKAGE_BINUTILS
  23. select BR2_PACKAGE_ZLIB
  24. help
  25. Enable the GNU lightning disassembler.
  26. comment "lightning disassembler needs a toolchain w/ wchar"
  27. depends on !BR2_nios2
  28. depends on !BR2_USE_WCHAR
  29. endif