溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Ubuntu下如何使用linuxdeployqt打包Qt程序

發(fā)布時(shí)間:2022-10-22 11:24:19 來源:億速云 閱讀:578 作者:iii 欄目:服務(wù)器

本篇內(nèi)容介紹了“Ubuntu下如何使用linuxdeployqt打包Qt程序”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

1. 配置qt環(huán)境

首先,我們先把qt環(huán)境配置好,在~/.bashrc中加入:

export path=/home/xl/qt5.9.2/5.9.2/gcc_64/bin:$path
export ld_library_path=/home/xl/qt5.9.2/5.9.2/gcc_64/lib:$ld_library_path
export qt_plugin_path=/home/xl/qt5.9.2/5.9.2/gcc_64/plugins:$qt_plugin_path
export qml2_import_path=/home/xl/qt5.9.2/5.9.2/gcc_64/qml:$qml2_import_path

其中/home/xl/qt5.9.2/5.9.2/目錄要根據(jù)自己電腦上安裝的qt路徑進(jìn)行修改。

然后執(zhí)行sourec ~/.bashrc使配置生效。

2. 編譯linuxdeployqt

雖然有放出編譯好的包,但是由于我使用的是ubuntu18, 系統(tǒng)版本過高,因此還是選擇編譯代碼的方式。

為了避免編譯好的包運(yùn)行時(shí)檢測(cè)到我們的系統(tǒng)版本過高,不繼續(xù)執(zhí)行的問題,我們編譯前,將tools/linuxdeployqt/main.cpp中的下述代碼注釋掉:

// opensuse leap 15.0 uses glibc 2.26 and is used on obs
    /*if (strverscmp (glcv, "2.27") >= 0) {  //注釋版本檢查
      qinfo() << "error: the host system is too new.";
      qinfo() << "please run on a system with a glibc version no newer than what comes with the oldest";
      qinfo() << "currently still-supported mainstream distribution (xenial), which is glibc 2.23.";
      qinfo() << "this is so that the resulting bundle will work on most still-supported linux distributions.";
      qinfo() << "for more information, please see";
      qinfo() << "https://github.com/probonopd/linuxdeployqt/issues/340";
      return 1;
    }*/

然后就可以使用cmake和make進(jìn)行編譯。生成好的可執(zhí)行程序是tools/linuxdeployqt/linuxdeployqt。

最后為了方便使用,可以將生成的可執(zhí)行程序拷貝到系統(tǒng)的/usr/local/bin/目錄。

3. 打包

將qt編譯的好的程序拷貝到一個(gè)單獨(dú)的文件夾中。

 然后執(zhí)行linuxdeployqt appname.

一般情況下會(huì)很順利的完成,當(dāng)前目錄下會(huì)有個(gè)apprun,直接執(zhí)行它就可以。

 但是有時(shí)候并不是那么順利,應(yīng)該是系統(tǒng)中還缺少相應(yīng)的庫(kù)。比如,我遇到的錯(cuò)誤是:

error: could not start patchelf.
error: make sure it is installed on your $path.
error: error reading rpath with patchelf "libqt5widgets.so" : ""
error: error reading rpath with patchelf "libqt5widgets.so" : ""

這個(gè)錯(cuò)誤是表明缺少需要的pathchelf工具,直接安裝即可解決:

sudo apt install patchelf

然后又出現(xiàn)了下面這個(gè)錯(cuò)誤:

error: ldd outputline: "libjasper.so.1 => not found"
error: for binary: "/home/xl/qt5.9.2/5.9.2/gcc_64/plugins/imageformats/libqjp2.so"
error: please ensure that all libraries can be found by ldd. aborting.

這表明我們系統(tǒng)中是缺少了libqjp2.so這個(gè)庫(kù)的。其實(shí)很奇怪,本地明明是已經(jīng)可以跑起來了,為什么還缺少這個(gè)庫(kù)文件。但是解決方法很簡(jiǎn)單,缺什么就裝什么:

sudo add-apt-repository "deb http://security.ubuntu.com/ubuntu xenial-security main"
sudo apt update
sudo apt install libjasper1 libjasper-dev

安裝完成之后,就順利打包了。

“Ubuntu下如何使用linuxdeployqt打包Qt程序”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI