hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
config BR2_PACKAGE_STELLA
   bool "stella"
   depends on !BR2_STATIC_LIBS # sdl2
   depends on BR2_INSTALL_LIBSTDCPP
   depends on BR2_TOOLCHAIN_HAS_THREADS
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
   select BR2_PACKAGE_SDL2
   select BR2_PACKAGE_LIBPNG
   select BR2_PACKAGE_ZLIB
   help
     Stella is a multi-platform Atari 2600 VCS emulator.
 
     https://stella-emu.github.io/
 
comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.9"
   depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
       !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9