Linux編譯移植Qt5的環境_Xillinx的ZYNQ平臺
Linux編譯Qt環境
2017年的十一假期,足不出戶,一個人在教研室裡面搞Qt的移植。我手裡面有Samsung的CortexA8,Samsung的 CortexA53還有Ti的Sitara系列的AM3517的ARM,都成功的移植了Qt,然而在我接觸ZYNQ這個平臺的時候,偏偏搞的我三天的時間,無法移植,ZYNQ上面安裝的是Linaro這個閹割版本的Ubuntu,怎麼都不成功,一個問題,在我的PC機上編譯完到Linaro上面執行的時候,沒有反應,不啟動也不報錯。
準備
- 交叉編譯環境(一定要找到適合你板子的交叉編譯環境)
你需要用嵌入式環境編譯Qt和Qt所開發的程式。
- Qte嵌入式原始碼,檔案的名字如同:qt-everywhere-opensource-src-5.7.0.tar.xz
我的環境:
PC 機: Ubuntu16.04 (64bit)
交叉編譯環境配置
其實也可以不進行配置,反正後面我們在編譯器名稱的時候都用絕對路徑
配置環境變數一共有好幾種方法,交叉編譯環境的方法就不說了:
編譯tslib1.4
對觸控式螢幕訊號的獲取、校正、濾波處理,均採用開源的tslib,本文采用的tslib版本為最新的tslib1.4(可以從本文提供的連結中下載tslib1.4)。
1.將下載好的tslib1.4拷貝到/home/lz/transplant目錄下(可以根據自己的系統選擇某一目錄),然後執行解壓縮命令
tar -vxf tslib-1.4 .tar.gz1
切換到tslib目錄:
cd tslib
安裝交叉編譯tslib必須的一些工具(可以先檢視是否已安裝,ubuntu16.04自帶這些工具,可跳過)
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install libtool
2.利用指令碼寫編譯過程
在tslib資料夾下新建檔案configTslib14.sh
vi configTslib14.sh
內容如下:
#!/bin/sh
make clean && make distclean
echo "ac_cv_func_malloc_0_nonnull=yes" >arm-linux.cache
CC=/usr/local/arm/arm-2014.05/bin/arm-none-linux-gnueabi-gcc ./configure --host=arm-linux --prefix=/opt/tslib1.4 --cache-file=arm-linux.cache
make && make install
然後執行configTslib14.sh
./configTslib14.sh
執行結束後,我們檢視一下是否安裝成功,執行命令:
ls /opt/tslib1.4
如果出現bin,etc,include,lib這4個目錄,如下圖所示,說明交叉編譯並安裝tslib成功。
*交叉編譯QT5.7.0
將下載的qt-everywhere-opensource-src-5.7.0.tar.gz執行如下命令解壓:
tar -vxf qt-everywhere-opensource-src-5.7.0.tar.gz
cd qt-everywhere-opensource-src-5.7.01
建立架構資訊:
- 進入架構資訊路徑
cd ./qtbase/mkspecs/
- 建立兩個檔案
touch qmake.config qplatformdefs.h
- 修改qplatformdefs.h ,直接把下面這個貼上上去,對一個問
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "../linux-g++/qplatformdefs.h"
- 修改交叉編譯架構用到的資訊:
gedit ./qtbase/mkspecs/linux-arm-gnueabi-g++/qmake.config
修改如下圖所示:
我在這裡的時候,即便是配置了交叉編譯環境,還是提示arm-linux-gnueabi-gcc找不到,而我單拿出來在命令列上面 arm-linux-gnueabi-gcc -v 的時候還能顯示出來,我換了四種方法配置交叉編譯環境,重啟N次還是不見效,所以我在qmake.config檔案上做了手腳,使用絕對路徑進行配置,沒想到編譯通過了,所以我建議在qmake.config檔案上使用絕對路徑。
#
# qmake configuration for building with arm-linux-gnueabi-g++
#
MAKEFILE_GENERATOR = UNIX
CONFIG += incremental
QMAKE_INCREMENTAL_STYLE = sublib
QT_QPA_DEFAULT_PLATFORM = linux #eglfs
QMAKE_CFLAGS_RELEASE += -O2 -march=armv7-a
QMAKE_CXXFLAGS_RELEASE += -O2 -march=armv7-a
include(../common/linux.conf)
include(../common/gcc-base-unix.conf)
include(../common/g++-unix.conf)
# modifications to g++.conf
QMAKE_CC = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-gcc
QMAKE_CXX = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-g++
QMAKE_LINK = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-g++
QMAKE_LINK_SHLIB = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-g++
# modifications to linux.conf
QMAKE_AR = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-ar cqs
QMAKE_OBJCOPY = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-objcopy
QMAKE_NM = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-nm -P
QMAKE_STRIP = /home/delvis/opt/gcc-linaro-arm-linux-guneabihf/bin/arm-none-linux-gnueabi-strip
load(qt_config)
建立一個指令碼檔案,用於生成Makefile,執行命令
gedit autoConfigure.sh
輸入下面內容並儲存:
./configure -release -opensource -xplatform linux-arm-gnueabi-g++ -prefix /opt/qt5-arm -no-c++11 -no-opengl
其中-prefix /opt/qt-5.7.0代表我們編譯完QT5.4.1後要安裝地址;-tslib代表QT對觸控板的支援,-I 和 -L後面分別為為第一步編譯tslib的include和lib的安裝目錄。
執行命令:
chmod 777 qt.configure.sh
./autoConfigure.sh
上述命令自動生成Makefile檔案。
執行命令啟動編譯:
make -j8
編譯大概20分鐘左右(I5-7500 的CPU)。
編譯結束後,執行安裝命令:
sudo make install
我們切換到目標目錄下看看是否安裝成功:
cd /opt/qt-5.7.0
ls
如圖所示:
將/opt/qt-5.7.0和/opt/tslib1.4 拷貝到開發板的檔案系統中對應的目錄中。