583432b94b
Removed 0003-Use-gnu-11-standard-to-prevent-errors-on-PPC.patch, since stella now uses -std=c++14 that builds fine when using PPC altivec vectorization. Removed 0004-gcc7.patch, backported from upstream. Update toolchain dependencies to gcc 4.9 since codebase now uses C++14 features. Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> [Arnout: also remove 0004-gcc7.patch] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
17 lines
499 B
Plaintext
17 lines
499 B
Plaintext
config BR2_PACKAGE_STELLA
|
|
bool "stella"
|
|
depends on !BR2_STATIC_LIBS # sdl2
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
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++, gcc >= 4.9"
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|