Changes between Version 56 and Version 57 of BuildingQt5OnHarmattan
- Timestamp:
- Jan 2, 2012, 11:06:36 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingQt5OnHarmattan
v56 v57 48 48 ||{{{export -n QTDIR}}}||To unset QTDIR. Or make sure that QTDIR points to your qt5/qtbase directory.|| 49 49 ||{{{sed -i 's/CFG_V8SNAPSHOT=auto/CFG_V8SNAPSHOT=no/' qtbase/configure}}}||Works around {{{make: *** [generated-debug/snapshot.cpp] Error 126}}} caused by a crash of qemu in scratchbox. There is no configure option as this should not be needed. Let's see if we need one or if we start building outside of scratchbox with a sysroot instead.|| 50 ||{{{sed 's/linux-g++-maemo://' qtbase/src/plugins/platforms/xcb/xcb.pro}}}||{{{-xplatform linux-g++-maemo}}} was used before to get the Harmattan-specific XInput2 touchsupport. But now xplatform doesn't work anymore since qtbase breaks the old 3.5 host compiler in scratchbox, so we have to enable it by hand. We should have some kind of auto-detection but we have to try cross-compiling + sysrooting properly before and find a mechanism that fits properly with this mode once we have something stable.||50 ||{{{sed -i 's/linux-g++-maemo://' qtbase/src/plugins/platforms/xcb/xcb.pro qtbase/src/plugins/platforminputcontexts/platforminputcontexts.pro}}}||{{{-xplatform linux-g++-maemo}}} was used before to get the Harmattan-specific XInput2 touch and Maliit (virtual keyboard) support. But now xplatform doesn't work anymore since qtbase breaks the old 3.5 host compiler in scratchbox, so we have to enable it by hand. We should have some kind of auto-detection but we have to try cross-compiling + sysrooting properly before and find a mechanism that fits properly with this mode once we have something stable.|| 51 51 ||{{{./configure -nokia-developer -fast -force-pkg-config -nomake tests -nomake examples}}}|||| 52 52 ||{{{make}}}||From the toplevel qt5 directory to build all modules in one shot.||