summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 705f2f27..fa497153 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,13 @@ When building stuff like `qtdeclarative`, `qtquick`, `qtwebkit`, make
9sure that you have required `PACKAGECONFIG` options enabled in qtbase 9sure that you have required `PACKAGECONFIG` options enabled in qtbase
10build, see `qtbase` recipe for detail. 10build, see `qtbase` recipe for detail.
11 11
12Some recipes like qtwebengine would need 32bit multilib compiler on build
13host, especially when target to be built is 32bit, e.g. arm since it builds
14v8 engine which requires `$CC -m32` to work, so ensure that host compiler
15can generate 32bit code, on archlinux distributions this would be
16```
17pacman -S lib32-gcc-libs lib32-glibc
18```
12 19
13Contributing 20Contributing
14------------ 21------------