]> Git Repo - buildroot-mgba.git/commitdiff
package/sqlitecpp: require C++11
authorMichael Nosthoff <[email protected]>
Wed, 10 Jul 2024 15:57:54 +0000 (17:57 +0200)
committerThomas Petazzoni <[email protected]>
Wed, 10 Jul 2024 20:10:30 +0000 (22:10 +0200)
[0] lists gcc 4.8.4 as minimum version. Since we don't have
a guard for patch versions depend on gcc 4.9

[0] http://srombauts.github.io/SQLiteCpp/#supported-platforms

Signed-off-by: Michael Nosthoff <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
package/sqlitecpp/Config.in

index 36ee4b73f9ca133ebc8f89991b02cf5a194b8e8f..31de9a3904efcd38b4b3a3d6f9243438442f7e70 100644 (file)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_SQLITECPP
        bool "sqlitecpp"
        depends on BR2_INSTALL_LIBSTDCPP
+       depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
        select BR2_PACKAGE_SQLITE
        select BR2_PACKAGE_SQLITE_ENABLE_COLUMN_METADATA
        help
@@ -9,5 +10,5 @@ config BR2_PACKAGE_SQLITECPP
 
          https://github.com/SRombauts/SQLiteCpp
 
-comment "sqlitecpp needs a toolchain w/ C++"
-       depends on !BR2_INSTALL_LIBSTDCPP
+comment "sqlitecpp needs a toolchain w/ C++11, gcc >= 4.9"
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
This page took 0.035862 seconds and 4 git commands to generate.