Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Build Qt for Tizen Developer Device: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(removed from needless category (only article in category)) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:HowTo]] | [[Category:HowTo]] | ||
{{WarningBox|text=This article seems outdated. Please feel free to update it and then remove this remark.}} | |||
== Overview == | == Overview == | ||
This article demonstrates how to build Qt 4.8.1 in Scratchbox2 ("SBS") and copy the files over to Tizen 1.0 Larkspur Ref.Device-210 (RD-210) for testing. Be aware that this does not include any source code changes, so the build might still need lots of work (and porting) for it to become fully usable. | This article demonstrates how to build Qt 4.8.1 in Scratchbox2 ("SBS") and copy the files over to Tizen 1.0 Larkspur Ref.Device-210 (RD-210) for testing. Be aware that this does not include any source code changes, so the build might still need lots of work (and porting) for it to become fully usable. | ||
== | == Steps to perform == | ||
# Install SBS: https://source.tizen.org/documentation/developer-guide/getting-started-guide/cloning-tizen-source | |||
# Install SBS: https://source.tizen.org/ | # Install the Tizen SDK: https://developer.tizen.org/downloads/tizen-sdk (alternatively, get "sdb" through some other means) | ||
# Install the Tizen SDK: https://developer.tizen.org/sdk (alternatively, get "sdb" through some other means) | # Get the Qt sources: http://download.qt.io/official_releases/qt/4.8/4.8.6/ | ||
# Get the Qt sources: http:// | # Unpack the sources somewhere: tar xzvf qt-everywhere-opensource-src-4.8.6.tar.gz | ||
# Unpack the sources somewhere: tar xzvf qt-everywhere-opensource-src-4.8. | |||
# Run "sbs -e" and then run "./configure -opensource -confirm-license" inside the extracted folder | # Run "sbs -e" and then run "./configure -opensource -confirm-license" inside the extracted folder | ||
# Run: make | # Run: make | ||
# Run: mkdir tmp & | # Run: mkdir tmp && INSTALL_ROOT=$(pwd)/tmp/ make install | ||
# Pack up everything: cd tmp & | # Pack up everything: cd tmp && tar czvf ../qt_tizen.tgz * | ||
# Copy it to the device: sdb push ../qt_tizen.tgz /root/ | # Copy it to the device: sdb push ../qt_tizen.tgz /root/ | ||
# Get a shell and extract it: sdb shell & | # Get a shell and extract it: sdb shell && tar xzvf /root/qt_tizen.tgz -C / | ||
After that, you should be able to run it using /usr/local/Trolltech/Qt-4.8.6/bin/qtdemo |
Latest revision as of 00:41, 25 May 2015
This article seems outdated. Please feel free to update it and then remove this remark. |
Overview
This article demonstrates how to build Qt 4.8.1 in Scratchbox2 ("SBS") and copy the files over to Tizen 1.0 Larkspur Ref.Device-210 (RD-210) for testing. Be aware that this does not include any source code changes, so the build might still need lots of work (and porting) for it to become fully usable.
Steps to perform
- Install SBS: https://source.tizen.org/documentation/developer-guide/getting-started-guide/cloning-tizen-source
- Install the Tizen SDK: https://developer.tizen.org/downloads/tizen-sdk (alternatively, get "sdb" through some other means)
- Get the Qt sources: http://download.qt.io/official_releases/qt/4.8/4.8.6/
- Unpack the sources somewhere: tar xzvf qt-everywhere-opensource-src-4.8.6.tar.gz
- Run "sbs -e" and then run "./configure -opensource -confirm-license" inside the extracted folder
- Run: make
- Run: mkdir tmp && INSTALL_ROOT=$(pwd)/tmp/ make install
- Pack up everything: cd tmp && tar czvf ../qt_tizen.tgz *
- Copy it to the device: sdb push ../qt_tizen.tgz /root/
- Get a shell and extract it: sdb shell && tar xzvf /root/qt_tizen.tgz -C /
After that, you should be able to run it using /usr/local/Trolltech/Qt-4.8.6/bin/qtdemo