Config.in 745 B

12345678910111213141516171819202122
  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_6 # C++14
  7. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  8. select BR2_PACKAGE_SDL2
  9. select BR2_PACKAGE_LIBPNG
  10. select BR2_PACKAGE_ZLIB
  11. help
  12. Stella is a multi-platform Atari 2600 VCS emulator.
  13. https://stella-emu.github.io/
  14. comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 6"
  15. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
  16. !BR2_TOOLCHAIN_HAS_THREADS || \
  17. !BR2_TOOLCHAIN_GCC_AT_LEAST_6
  18. comment "stella needs a toolchain not affected by GCC bug 64735"
  19. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735