diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-10-06 22:09:15 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2019-10-08 20:02:46 +0000 |
commit | 9172ba1c74db752f31f92833f581a27a0be60d72 (patch) | |
tree | 185207fcd5d8c399046f33eff760427a85ad586b | |
parent | db2fd6c263adbaed7eb2c6b3edf46c16e60b1703 (diff) | |
download | meta-qt5-9172ba1c74db752f31f92833f581a27a0be60d72.tar.gz |
README.md: Document need for 32bit host compiler
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -9,6 +9,13 @@ When building stuff like `qtdeclarative`, `qtquick`, `qtwebkit`, make | |||
9 | sure that you have required `PACKAGECONFIG` options enabled in qtbase | 9 | sure that you have required `PACKAGECONFIG` options enabled in qtbase |
10 | build, see `qtbase` recipe for detail. | 10 | build, see `qtbase` recipe for detail. |
11 | 11 | ||
12 | Some recipes like qtwebengine would need 32bit multilib compiler on build | ||
13 | host, especially when target to be built is 32bit, e.g. arm since it builds | ||
14 | v8 engine which requires `$CC -m32` to work, so ensure that host compiler | ||
15 | can generate 32bit code, on archlinux distributions this would be | ||
16 | ``` | ||
17 | pacman -S lib32-gcc-libs lib32-glibc | ||
18 | ``` | ||
12 | 19 | ||
13 | Contributing | 20 | Contributing |
14 | ------------ | 21 | ------------ |