author | zecke <zecke> | 2004-01-25 13:01:01 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-01-25 13:01:01 (UTC) |
commit | 4b0940b524d672814b6ec62161b3d02825fb5da0 (patch) (unidiff) | |
tree | f4fa27d4c53f4ab28470e0d94b0b8da7a2ca5a43 /README | |
parent | 2b833a0d03f3f2bb21c897c5b6d84c0d98155306 (diff) | |
download | opie-4b0940b524d672814b6ec62161b3d02825fb5da0.zip opie-4b0940b524d672814b6ec62161b3d02825fb5da0.tar.gz opie-4b0940b524d672814b6ec62161b3d02825fb5da0.tar.bz2 |
-First use -p1 for patching!
-Also fix the filename of qpe-config.h to qconfig-qpe.h
-Then state what you need to do for cross compiling Qt/E (-xplatform)
Spotted by RamaSubbuSK on irc
-rw-r--r-- | README | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -32,17 +32,22 @@ so that the Qt/Embedded and Opie libraries can be found: | |||
32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH | 32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH |
33 | 33 | ||
34 | You have to apply the qte<version>-all.patch to the Qt/Embedded | 34 | You have to apply the qte<version>-all.patch to the Qt/Embedded |
35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: | 35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: |
36 | cd $QTDIR; cat $OPIEDIR/qt/qte<version>*.patch | patch -p0 | 36 | cd $QTDIR; cat $OPIEDIR/qt/qte<version>*.patch | patch -p1 |
37 | cp $OPIEDIR/qt/qpe-config.h $QTDIR/src/tools | 37 | cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools |
38 | 38 | ||
39 | You are now ready to configure and build Qt/Embedded | 39 | You are now ready to configure and build Qt/Embedded |
40 | 40 | ||
41 | cd $QTDIR | 41 | cd $QTDIR |
42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xft -qvfb | 42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xft -qvfb |
43 | make | 43 | make |
44 | 44 | ||
45 | Note that the above command ( -qvfb ) compiles in the Virtual | ||
46 | Framebuffer and is mostly meant on your host system. For cross | ||
47 | compiling you will need to use the -xplatform switch but call | ||
48 | ./configure --help to see your options. | ||
49 | |||
45 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler | 50 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler |
46 | is available. | 51 | is available. |
47 | 52 | ||
48 | Then do the following in the opie source tree: | 53 | Then do the following in the opie source tree: |