1*4882a593Smuzhiyunconfig BR2_PACKAGE_STELLA 2*4882a593Smuzhiyun bool "stella" 3*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS # sdl2 4*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6 # C++14 7*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr 8*4882a593Smuzhiyun select BR2_PACKAGE_SDL2 9*4882a593Smuzhiyun select BR2_PACKAGE_LIBPNG 10*4882a593Smuzhiyun select BR2_PACKAGE_ZLIB 11*4882a593Smuzhiyun help 12*4882a593Smuzhiyun Stella is a multi-platform Atari 2600 VCS emulator. 13*4882a593Smuzhiyun 14*4882a593Smuzhiyun https://stella-emu.github.io/ 15*4882a593Smuzhiyun 16*4882a593Smuzhiyuncomment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 6" 17*4882a593Smuzhiyun depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \ 18*4882a593Smuzhiyun !BR2_TOOLCHAIN_HAS_THREADS || \ 19*4882a593Smuzhiyun !BR2_TOOLCHAIN_GCC_AT_LEAST_6 20*4882a593Smuzhiyun 21*4882a593Smuzhiyuncomment "stella needs a toolchain not affected by GCC bug 64735" 22*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 23