package/wpewebkit: needs >= GCC 7
authorPeter Korsgaard <peter@korsgaard.com>
Sat, 15 Feb 2020 15:09:27 +0000 (16:09 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 16 Feb 2020 11:54:45 +0000 (12:54 +0100)
commit09af6d8bfd8ece6b021b877aaf5cbd36a78ffad9
treea1dd3fdc7884db4cfd27fae41cb44173d3c02c7b
parent97ce61f633b02b1362cb9b9c93b9137a30065747
package/wpewebkit: needs >= GCC 7

CMakeLists.txt contains a toolchain check:

if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
    if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "7.3.0")
        message(FATAL_ERROR "GCC 7.3 or newer is required to build WebKit. Use a newer GCC version or Clang.")
    endif ()
endif ()

So bump the toolchain dependency to >= GCC 7.  The check is really about >=
7.3.0, but we do not have such detailed version checks.  Given that GCC
7.3.0 was released in January 2018 (and 7.1.0 in May 2017), most external
GCC 7.x toolchains probably use >= 7.3.0.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/wpewebkit/Config.in