qtcreator: update to 4.14.0
This commit is contained in:
parent
3d068bd98d
commit
3af9613175
2 changed files with 3 additions and 22 deletions
|
@ -1,19 +0,0 @@
|
||||||
commit 4d95445fbfcad6af809bb8c93db43e2af34aefbb
|
|
||||||
Author: q66 <daniel@octaforge.org>
|
|
||||||
Date: Mon Jan 6 00:31:03 2020 +0100
|
|
||||||
|
|
||||||
Fix build on big endian
|
|
||||||
|
|
||||||
diff --git src/tools/perfparser/app/perfunwind.cpp src/tools/perfparser/app/perfunwind.cpp
|
|
||||||
index 904fcbf..7802310 100644
|
|
||||||
--- src/tools/perfparser/app/perfunwind.cpp
|
|
||||||
+++ src/tools/perfparser/app/perfunwind.cpp
|
|
||||||
@@ -127,7 +127,7 @@ PerfUnwind::PerfUnwind(QIODevice *output, const QString &systemRoot, const QStri
|
|
||||||
// Write minimal header, consisting of magic and data stream version we're going to use.
|
|
||||||
const char magic[] = "QPERFSTREAM";
|
|
||||||
output->write(magic, sizeof(magic));
|
|
||||||
- qint32 dataStreamVersion = qToLittleEndian(QDataStream::Qt_DefaultCompiledVersion);
|
|
||||||
+ qint32 dataStreamVersion = qToLittleEndian<qint32>(QDataStream::Qt_DefaultCompiledVersion);
|
|
||||||
output->write(reinterpret_cast<const char *>(&dataStreamVersion), sizeof(qint32));
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'qtcreator'
|
# Template file for 'qtcreator'
|
||||||
pkgname=qtcreator
|
pkgname=qtcreator
|
||||||
version=4.13.3
|
version=4.14.0
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc="qt-creator-opensource-src-${version}"
|
wrksrc="qt-creator-opensource-src-${version}"
|
||||||
build_style=qmake
|
build_style=qmake
|
||||||
|
@ -14,9 +14,9 @@ maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
||||||
license="LGPL-3.0-or-later, custom:QtCompany-GPL-Exception-1.0"
|
license="LGPL-3.0-or-later, custom:QtCompany-GPL-Exception-1.0"
|
||||||
homepage="https://wiki.qt.io/Category:Tools::QtCreator"
|
homepage="https://wiki.qt.io/Category:Tools::QtCreator"
|
||||||
distfiles="https://download.qt.io/official_releases/qtcreator/${version%.*}/${version}/${wrksrc}.tar.xz"
|
distfiles="https://download.qt.io/official_releases/qtcreator/${version%.*}/${version}/${wrksrc}.tar.xz"
|
||||||
checksum=7b0317ca9354284e98967e94a30a1b813db379017d28d9847847498c113df9e5
|
checksum=d240109351e96446ff149cbd56341ec02ba37bfa50462a85e4d02dfe6b21201e
|
||||||
python_version=3
|
|
||||||
replaces="qtcreator-data>=0"
|
replaces="qtcreator-data>=0"
|
||||||
|
python_version=3
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
if [ "$CROSS_BUILD" ]; then
|
||||||
hostmakedepends+=" qt5-declarative-devel qt5-host-tools qt5-script-devel qt5-tools-devel"
|
hostmakedepends+=" qt5-declarative-devel qt5-host-tools qt5-script-devel qt5-tools-devel"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue