Changes between Version 12 and Version 13 of SettingUpDevelopmentEnvironmentForN9
- Timestamp:
- Feb 9, 2012, 12:25:42 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SettingUpDevelopmentEnvironmentForN9
v12 v13 81 81 $ patch -p1 < browser-script.patch 82 82 }}} 83 Tested with resworb script hash: 378c7cb835ad7f65ba8b6756c3a05381e861b110. 83 84 84 85 Download testfonts (run@host): … … 157 158 Make the script runnable and execute it before building inside scratchbox when you need speedup. 158 159 159 == 1.4. Build QtWebKit==160 == 1.4.a. Build QtWebKit in Scratchbox == 160 161 161 162 Login to scratchbox and optionally execute script for icecc (run@host): … … 202 203 </div> 203 204 }}} 205 204 206 So, follow this instuction that printed (run@sbox): 205 207 {{{ 206 208 [sbox-HARMATTAN_ARMEL: ~/swork] > export PATH=/scratchbox/users/$USER/home/$USER/swork/browser-scripts/../qt5/qtbase/bin:$PATH 209 }}} 210 211 The next step is building Qt-Components (run@sbox): 212 {{{ 213 [sbox-HARMATTAN_ARMEL: ~/swork] > browser-scripts/qt-components-build.sh 207 214 }}} 208 215 … … 227 234 </pre></div> 228 235 }}} 236 237 == 1.4.b. Build QtWebKit with Sysroot == 238 Optionally you can build Qt and WebKit on your host with cross-compiler using sysroot. This method seems to be faster, but you can not use ICECC for this, yet. 239 240 Download and install QtSDK 1.2 from http://qt.nokia.com/downloads/ (Linux/X11 64-bit). 241 242 Clear QTDIR, ICECC_VERSION environment variables and remove Qt specific things from PATH. 243 244 Follow the steps (run@host): 245 {{{ 246 $ browser-scripts/setup-arm-toolchain-bin.sh 247 $ browser-scripts/resolve-ablosulte-links-in-scratchbox-sysroot.sh 248 $ browser-scripts/build-sources.sh --scratchbox-cross-compile 249 }}} 250 251 This will produce qtwebkit-webkit2-dev-builddir-xarmel-m6 build. Don't forget to change your variables to xarmel in your variables in section 3.2.1. 229 252 230 253 == 1.5. Updating build environment ==