1config 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 14 https://stella-emu.github.io/ 15 16comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 6" 17 depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \ 18 !BR2_TOOLCHAIN_HAS_THREADS || \ 19 !BR2_TOOLCHAIN_GCC_AT_LEAST_6 20 21comment "stella needs a toolchain not affected by GCC bug 64735" 22 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 23