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