-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Qt 5.11 and static build fixes (#4164)
* fix da qt5 * fix qt config duplication * [qt5-base] Use vcpkg_extract_source_archive_ex [sqlite3] Enable SQLITE_ENABLE_COLUMN_METADATA * [qt5-*] Update sub-portfiles * qt5-base WIP * [qt5] Fix Could not find qmlcachegen.exe * [qt5-activeqt] Fix SHA512 * [qt5-base] Fix static builds * [qt5-base] Bump control version * [qt5-base] Restore removal of qmake dependencies * [qt5-base] Partially revert #3280 * [qt5-base][vcpkg_build_qmake] Fix Qt5Bootstrap.lib issues
- Loading branch information
1 parent
cba23fe
commit 473d63c
Showing
56 changed files
with
176 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qscintilla | ||
Version: 2.10-4 | ||
Version: 2.10-5 | ||
Description: QScintilla is a port to Qt of the Scintilla editing component. Features syntax highlighting, code-completion and much more (Barebone build without python bindings (missing dependeny PyQt) and without QtDesigner plugin) | ||
Build-Depends: qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-3d | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 3d Module - Functionality for near-realtime simulation systems with support for 2D and 3D rendering | ||
Build-Depends: qt5-modularscripts, qt5-base, qt5-declarative |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-activeqt | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 ActiveQt Module - ActiveX components | ||
Build-Depends: qt5-modularscripts, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-base | ||
Version: 5.9.2-7 | ||
Version: 5.11.1-2 | ||
Description: Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components. | ||
Build-Depends: zlib, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
diff -Naur a/mkspecs/common/msvc-version.conf b/mkspecs/common/msvc-version.conf | ||
--- a/mkspecs/common/msvc-version.conf 2018-06-15 03:29:31.000000000 -0400 | ||
+++ b/mkspecs/common/msvc-version.conf 2018-08-23 00:26:46.436806400 -0400 | ||
@@ -112,4 +112,11 @@ | ||
COMPAT_MKSPEC = | ||
} | ||
|
||
+ | ||
+# MSVC 2017 15.8+ fixed std::aligned_storage but compilation fails without | ||
+# this flag since the fix breaks binary compatibility. | ||
+greaterThan(QMAKE_MSC_VER, 1914) { | ||
+ DEFINES += _ENABLE_EXTENDED_ALIGNED_STORAGE | ||
+} | ||
+ | ||
!isEmpty(COMPAT_MKSPEC):!$$COMPAT_MKSPEC: CONFIG += $$COMPAT_MKSPEC | ||
diff -Naur a/qmake/Makefile.win32 b/qmake/Makefile.win32 | ||
--- a/qmake/Makefile.win32 2018-06-15 03:29:31.000000000 -0400 | ||
+++ b/qmake/Makefile.win32 2018-08-23 00:27:45.764849600 -0400 | ||
@@ -39,7 +39,7 @@ | ||
-D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS \ | ||
-DQT_VERSION_STR=\"$(QT_VERSION)\" -DQT_VERSION_MAJOR=$(QT_MAJOR_VERSION) -DQT_VERSION_MINOR=$(QT_MINOR_VERSION) -DQT_VERSION_PATCH=$(QT_PATCH_VERSION) \ | ||
-DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL \ | ||
- -DQT_NO_FOREACH -DUNICODE | ||
+ -DQT_NO_FOREACH -DUNICODE -D_ENABLE_EXTENDED_ALIGNED_STORAGE | ||
CFLAGS = $(CFLAGS_PCH) $(CFLAGS_BARE) $(CFLAGS) | ||
|
||
CXXFLAGS_BARE = $(CFLAGS_BARE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
diff --git a/src/corelib/configure.json b/src/corelib/configure.json | ||
index a5a1b66..5a48a05 100644 | ||
--- a/src/corelib/configure.json | ||
+++ b/src/corelib/configure.json | ||
@@ -163,8 +163,10 @@ | ||
"builds": { | ||
"debug": "-lpcre2-16d", | ||
"release": "-lpcre2-16" | ||
- } | ||
- } | ||
+ }, | ||
+ "condition": "config.win32" | ||
+ }, | ||
+ { "libs": "-lpcre2-16", "condition": "!config.win32" } | ||
] | ||
}, | ||
"pps": { | ||
diff -Naur a/src/corelib/configure.json b/src/corelib/configure.json | ||
--- a/src/corelib/configure.json 2018-08-23 02:58:54.544949500 -0400 | ||
+++ b/src/corelib/configure.json 2018-08-23 02:59:31.481175300 -0400 | ||
@@ -181,8 +181,10 @@ | ||
"builds": { | ||
"debug": "-lpcre2-16d", | ||
"release": "-lpcre2-16" | ||
- } | ||
- } | ||
+ }, | ||
+ "condition": "config.win32" | ||
+ }, | ||
+ { "libs": "-lpcre2-16", "condition": "!config.win32" } | ||
] | ||
}, | ||
"pps": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-charts | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 Charts Module - UI components for displaying charts, driven by static or dynamic data models | ||
Build-Depends: qt5-modularscripts, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-datavis3d | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 Data Visualization 3d Module - UI Components for creating 3D data visualizations | ||
Build-Depends: qt5-modularscripts, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-declarative | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 Declarative (Quick 2) Module. Includes QtQuick, QtQuickParticles, QtQuickWidgets, QtQml, and QtPacketProtocol. | ||
Build-Depends: qt5-modularscripts, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: qt5-gamepad | ||
Version: 5.9.2-0 | ||
Version: 5.11.1 | ||
Description: Qt5 Gamepad Module - Enables Qt applications to support the use of gamepad hardware | ||
Build-Depends: qt5-modularscripts, qt5-base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.