diff options
author | Jüri Valdmann <juri.valdmann@qt.io> | 2018-07-20 10:22:12 +0200 |
---|---|---|
committer | Jüri Valdmann <juri.valdmann@qt.io> | 2018-07-23 08:01:54 +0000 |
commit | 38952ec359423a060d9e2f500f2d9eba2336f532 (patch) | |
tree | daa54e5b88c7aeae89692891f8f14babbf7bebf7 /mkspecs/features | |
parent | 10376cbe5d653f1fd1a5554e00d288eaf3e94a78 (diff) | |
download | qtwebengine-38952ec359423a060d9e2f500f2d9eba2336f532.tar.gz |
Fix minimum GCC version in documentation
The documentation says we require 4.7 or later but actually already since the
5.10.0 release our qmake config has been checking for version 5 or later.
Task-number: QTBUG-69535
Change-Id: Ia2f74b35570a9ba6fd1423b9507fe636d850db76
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'mkspecs/features')
-rw-r--r-- | mkspecs/features/platform.prf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mkspecs/features/platform.prf b/mkspecs/features/platform.prf index 2c8ef43a5..614f7fc92 100644 --- a/mkspecs/features/platform.prf +++ b/mkspecs/features/platform.prf @@ -88,6 +88,7 @@ defineTest(isArchSupported) { } defineTest(isGCCVersionSupported) { + # Keep in sync with src/webengine/doc/src/qtwebengine-platform-notes.qdoc greaterThan(QT_GCC_MAJOR_VERSION, 4):return(true) skipBuild("Using gcc version "$$QT_GCC_MAJOR_VERSION"."$$QT_GCC_MINOR_VERSION", but at least gcc version 5 is required to build Qt WebEngine.") |