Changes between Version 32 and Version 33 of SettingUpDevelopmentEnvironmentForN9
- Timestamp:
- Feb 27, 2012, 8:34:54 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SettingUpDevelopmentEnvironmentForN9
v32 v33 34 34 }}} 35 35 36 This will create a new target based on the original Harmattan target that comes with the QtSDK, but with different names for the ARM-toolchain binaries, and pre-installed packages needed for Qt5 development. 36 This will create a new target based on the original Harmattan target that comes with the QtSDK, but with different names for the ARM-toolchain binaries, and pre-installed packages needed for Qt5 development. If you get errors like ''"relocation R_ARM_MOVW_ABS_NC against `a local symbol' can not be used"'' on build then you should use '''--force''' option with setup-madde-toolchain.sh. 37 37 38 38 == 1.5. Download testfonts == … … 66 66 {{{ 67 67 $ cd ~/swork 68 $ ln -s /home/$USER/QtSDK/Madde/targets/harmattan_10.2011.34-1_qt5/bin /home/$USER/swork/browser-scripts/arm-toolchain-bin 68 69 $ browser-scripts/create-icecc-env.sh --environment cross 69 70 }}} 70 71 71 Save the printed output to a file called icecc-env.sh: 72 {{{ 73 #!html 74 <div style="color:#000055;border: 1pt dotted; margin:1em 2em 1em 2em; padding: 1em;background:none repeat scroll 0 0 #CCDDFF;"> 75 <pre>icecc_tarball=$(readlink -f $HOME/icecc/icecc-build) 76 parallel_builds="40" 77 78 if [ -f $icecc_tarball ] ; then 79 export ICECC_VERSION="i386:$icecc_tarball,x86_64:$icecc_tarball" 80 export PATH="/home/azbest/icecc/bin:$PATH" 81 export MAKEFLAGS="$MAKEFLAGS -j$parallel_builds" 82 export DEB_BUILD_OPTIONS="$DEB_BUILD_OPTIONS,parallel=$parallel_builds" 83 fi</pre></div> 84 }}} 85 86 Make the script runnable and execute it before building when you need speedup. 72 The script will create a file called setup-icecc-cross-env.sh in your swork directory. 73 Make the script runnable. 87 74 88 75 == 1.8. Build sources == … … 94 81 $ browser-scripts/build-sources.sh --cross-compile 95 82 }}} 83 84 You may use '''--with-icecc''' option for building to get speedup with icecc. 96 85 97 86 This will build Qt5, QtComponents, and QtWebKit.