package/stella: needs gcc >= 5
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 17 Mar 2019 07:58:07 +0000 (08:58 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 17 Mar 2019 10:05:45 +0000 (11:05 +0100)
std::put_time needs gcc 5.x:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54354

Fixes:
 - http://autobuild.buildroot.org/results/cf5bd2f262b108e4b90b6e31e46c5f82b9aef0a0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/stella/Config.in

index 639b9e4ae7873362e7d83acf06c173357a6c5de0..326b3f75eb2ec0ca6e74efb0b6e48d7500c34698 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_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
+       depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
        select BR2_PACKAGE_SDL2
        select BR2_PACKAGE_LIBPNG
        select BR2_PACKAGE_ZLIB
@@ -12,7 +12,7 @@ config BR2_PACKAGE_STELLA
 
          https://stella-emu.github.io/
 
-comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 4.9"
+comment "stella needs a toolchain w/ dynamic library, C++, threads, gcc >= 5"
        depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
                !BR2_TOOLCHAIN_HAS_THREADS || \
-               !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
+               !BR2_TOOLCHAIN_GCC_AT_LEAST_5