qt arm版本SDK編譯

#!/bin/sh  
../configure -prefix /home/damon/dev/3rd/sdk/arm/qt_5_14_2_arm -verbose  -opensource  -release  -confirm-license  -xplatform linux-arm-gnueabi-g++ -shared -qt-zlib -qt-libjpeg -qt-libpng -make libs -linuxfb  -no-cups -no-iconv -no-pch -no-opengl


第二版本
#!/bin/sh  
../configure \
	    -prefix /home/damon/dev/3rd/sdk/arm/qt_5_14_2_arm \
	    -confirm-license \
	    -opensource \
	    -compile-examples \
	    -xplatform linux-arm-gnueabihf-g++ \
	    -sysroot /home/damon/dev/tools/cross_compile/arm/sysroot \
	    -shared \
	    -release  \
	    -optimized-qmake \
	    -qt-libjpeg \
	    -qt-libpng \
	    -qt-zlib \
	    -tslib \
	    -no-linuxfb \
	    -no-sse2 \
	    -no-openssl \
	    -no-cups \
	    -no-glib \
	    -no-xcb \
	    -no-separate-debug-info \
	    -skip qtcanvas3d \
	    -skip qt3d \
	    -nomake examples \
	    -nomake tools \
	    -nomake tests \
	    -no-iconv

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章