Config.in 924 B

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