各位朋友好,如题,我现在使用的是合众达的omap-l137的开发板,这开发板是ARM926和dsp双核芯片。关于QT做界面的设置,我在TI的网上(http://wiki.davincidsp.com/index.php/Building_Qt)看到:
Qt 4.5.x Embedded Linux: Configuration for OMAP-L137 #./configure -prefix /opt/qt -embedded arm -platform /qws/linux-x86-g++ -xplatform /qws/linux-omapl1-mv-g++ -qt-kbd-usb -depths 16 -no-cups -no-largefile -no-accessibility -no-opengl -no-openssl
我根据我自己的安装路径和编译器(montavista linux),修改上述configure:
我做了两处修改:
1、/opt/qt 改为:/opt/montavista/pro/devkit/arm/v5t_le/target/opt/qte
2、-xplatform /qws/linux-omapl1-mv-g++ 改为
-xplatform /qws/linux-omapl1-g++
修改后的configure命令为:
#./configure -prefix /opt/montavista/pro/devkit/arm/v5t_le/target/opt/qte -embedded arm -platform /qws/linux-x86-g++ -xplatform /qws/linux-omapl1-g++ -qt-kbd-usb -depths 16 -no-cups -no-largefile -no-accessibility -no-opengl -no-openssl
我的修改是否正确,请各位朋友指导,谢谢!!
|