<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-qt5.git/recipes-qt/qt5/nativesdk-qtbase_git.bb, branch master-next</title>
<subtitle>Mirror of https://code.qt.io/cgit/yocto/meta-qt5.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-qt5.git/atom?h=master-next</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-qt5.git/atom?h=master-next'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/'/>
<updated>2019-01-12T17:58:58+00:00</updated>
<entry>
<title>qtbase: fix incomplete recipe changes from previous commit</title>
<updated>2019-01-12T17:58:58+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2019-01-12T17:58:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=82abc2bb38e6db10b469975c1f50be1bc1c078e8'/>
<id>urn:sha1:82abc2bb38e6db10b469975c1f50be1bc1c078e8</id>
<content type='text'>
* the patches were renamed, but I forgot to amend the SRC_URI modifications

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: Fix qtopcua issue on bigendian systems</title>
<updated>2019-01-10T09:56:37+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2019-01-04T16:43:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=f4c8cef8586d28f51f69a78717c10093f8a9f730'/>
<id>urn:sha1:f4c8cef8586d28f51f69a78717c10093f8a9f730</id>
<content type='text'>
See
http://errors.yoctoproject.org/Errors/Details/213681/

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: replace the fix for gcc-4.8 with the one from upstream</title>
<updated>2018-12-24T08:43:51+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2018-12-24T08:43:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=51e07805e0cf8f53bc9609854d1afd5e51494151'/>
<id>urn:sha1:51e07805e0cf8f53bc9609854d1afd5e51494151</id>
<content type='text'>
* fixes:
| In file included from ../include/QtCore/qendian.h:1:0,
|                  from /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+13ed06640c-r0/git/src/corelib/codecs/qutfcodec.cpp:43:
| ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = qfloat16]�:
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:167:36:   required from here
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = qfloat16]� not a return-statement
|  }
|  ^
| ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = float]�:
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:172:29:   required from here
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = float]� not a return-statement
| ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = double]�:
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:177:29:   required from here
| ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = double]� not a return-statement

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: Fix build with gcc 4.8</title>
<updated>2018-12-24T08:29:40+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2018-12-24T08:09:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=c67abd66ff15feeaae5acc2688b932e5dec72317'/>
<id>urn:sha1:c67abd66ff15feeaae5acc2688b932e5dec72317</id>
<content type='text'>
Fixes errors like

In file included from ../include/QtCore/qendian.h:1:0,
                 from TOPDIR/build/tmp/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+13ed06640c-r0/git/src/corelib/codecs/qutfcodec.cpp:43:
../include/QtCore/../../../git/src/corelib/global/qendian.h:165:61: error: redeclaration ‘constexpr T qbswap(T) [with T = qfloat16]’ differs in ‘constexpr’

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: use v5.12.0 as base</title>
<updated>2018-12-21T21:01:45+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2018-12-20T12:01:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=6531fa731203debe1b42dedfa225bfa2e1847064'/>
<id>urn:sha1:6531fa731203debe1b42dedfa225bfa2e1847064</id>
<content type='text'>
* restore 0018-Fix-compile-issue-with-gcc-9.patch which is only in v5.12.1
* zlib detection got broken probably in:
  commit e80bf655e922e9864f8843b5e7bbb47019a6d95a
  Author: Oswald Buddenhagen &lt;oswald.buddenhagen@qt.io&gt;
  Date:   Thu Dec 7 19:30:07 2017 +0100

    configure: verify header presence against sources

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qt5: upgrade to latest revision in 5.12</title>
<updated>2018-12-20T01:05:55+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2018-12-20T01:05:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=c6be23d3b01b046d2142bb6fc017078f6154ddb5'/>
<id>urn:sha1:c6be23d3b01b046d2142bb6fc017078f6154ddb5</id>
<content type='text'>
* WIP: only qtbase now
* fixes #136

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qt5: refresh .patch files, meta-qt5/qt* repos and their tags in recipes</title>
<updated>2018-12-20T00:56:48+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2018-12-18T20:07:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=808d65c129d283850fa6c1e887dd01f8ee86b64b'/>
<id>urn:sha1:808d65c129d283850fa6c1e887dd01f8ee86b64b</id>
<content type='text'>
* in preparation for rebase on 5.12 #136

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: Fix build with gcc9</title>
<updated>2018-12-20T00:55:36+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2018-12-18T18:34:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=c483f15ee654f2b9d6eab0e34461299acadbdc49'/>
<id>urn:sha1:c483f15ee654f2b9d6eab0e34461299acadbdc49</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: Consider clang when computing QMAKE_CXX.COMPILER_MACROS</title>
<updated>2018-12-20T00:55:36+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2018-12-07T00:55:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=b725e6de4549221b191174bcbfc78fd57c4638e8'/>
<id>urn:sha1:b725e6de4549221b191174bcbfc78fd57c4638e8</id>
<content type='text'>
Helps in compiling qtapps with clang

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase: Fix build with clang/musl</title>
<updated>2018-12-20T00:55:36+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2018-12-06T19:54:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=b8fade938e684a5dda8c978689e914c5d11baf2e'/>
<id>urn:sha1:b8fade938e684a5dda8c978689e914c5d11baf2e</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
</feed>
