diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-08-24 07:32:09 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2018-09-19 09:55:34 +0000 |
commit | 189dd8ab10cace73f46fab8e22bf930b1f6aa5d8 (patch) | |
tree | b0861f63498d5ce4b53d33ee7a055049d15c0838 | |
parent | 85e665b15864a696a33ceb8cdbb42c5f902201a4 (diff) | |
download | meta-qt5-189dd8ab10cace73f46fab8e22bf930b1f6aa5d8.tar.gz |
qt5-creator: Fix building botan for all non-x86 arches
The original fix was just for x86/x86_64
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qt5-creator/botan-non-x86.patch | 19 | ||||
-rw-r--r-- | recipes-qt/qt5/qt5-creator_4.5.1.bb | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qt5-creator/botan-non-x86.patch b/recipes-qt/qt5/qt5-creator/botan-non-x86.patch new file mode 100644 index 00000000..5c83340c --- /dev/null +++ b/recipes-qt/qt5/qt5-creator/botan-non-x86.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | Just check for x86 or x86_64 to define X86 based support | ||
2 | This makes sure it compiles for non-x86 platforms | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
6 | |||
7 | Index: qt-creator-opensource-src-4.5.1/src/libs/3rdparty/botan/botan.h | ||
8 | =================================================================== | ||
9 | --- qt-creator-opensource-src-4.5.1.orig/src/libs/3rdparty/botan/botan.h | ||
10 | +++ qt-creator-opensource-src-4.5.1/src/libs/3rdparty/botan/botan.h | ||
11 | @@ -85,7 +85,7 @@ | ||
12 | #endif | ||
13 | |||
14 | #define BOTAN_TARGET_CPU_IS_LITTLE_ENDIAN | ||
15 | -#if !defined(__arm__) && !defined(__aarch64__) | ||
16 | +#if defined(__i386__) || defined(__x86_64__) | ||
17 | #define BOTAN_TARGET_CPU_IS_X86_FAMILY | ||
18 | #endif | ||
19 | #define BOTAN_TARGET_UNALIGNED_MEMORY_ACCESS_OK 1 | ||
diff --git a/recipes-qt/qt5/qt5-creator_4.5.1.bb b/recipes-qt/qt5/qt5-creator_4.5.1.bb index c56fcd10..6eaf785f 100644 --- a/recipes-qt/qt5/qt5-creator_4.5.1.bb +++ b/recipes-qt/qt5/qt5-creator_4.5.1.bb | |||
@@ -22,6 +22,7 @@ DEPENDS_append_libc-musl = " libexecinfo" | |||
22 | SRC_URI = " \ | 22 | SRC_URI = " \ |
23 | http://download.qt.io/official_releases/qtcreator/4.5/${PV}/qt-creator-opensource-src-${PV}.tar.gz \ | 23 | http://download.qt.io/official_releases/qtcreator/4.5/${PV}/qt-creator-opensource-src-${PV}.tar.gz \ |
24 | file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \ | 24 | file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \ |
25 | file://botan-non-x86.patch \ | ||
25 | file://qtcreator.desktop.in \ | 26 | file://qtcreator.desktop.in \ |
26 | " | 27 | " |
27 | SRC_URI_append_libc-musl = " file://0002-Link-with-libexecinfo-on-musl.patch" | 28 | SRC_URI_append_libc-musl = " file://0002-Link-with-libexecinfo-on-musl.patch" |