Config.in 693 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_STELLA
  2. bool "stella"
  3. depends on !BR2_STATIC_LIBS # sdl2
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
  7. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  8. select BR2_PACKAGE_SDL2
  9. help
  10. Stella is a multi-platform Atari 2600 VCS emulator.
  11. https://stella-emu.github.io/
  12. comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 7"
  13. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
  14. !BR2_TOOLCHAIN_HAS_THREADS || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_7
  16. comment "stella needs a toolchain not affected by GCC bug 64735"
  17. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735