龙芯 Loongson 架构 UOS 系统编译 Qt 5.15.2 源码

背景

需要在龙芯(Loongson)CPU,UOS 系统下,进行国产化项目适配,UOS 自带 Qt 5.11,但是版本过老,与目前基于 Qt 5.15.2 项目存在不兼容情况,故需要自行编译 Qt 5.15.2开发环境。

软硬件信息:

  • 处理器:Loongson-3A5000 (四核 / 四逻辑处理器)
  • 主板:Loongson-LS 3A5000-7A 1000-1w-V0.1-CRB
  • 架构:loongarch 64
  • 家族:Loongson-64 bit
  • 系统:UOS V20 1060
  • 内核: 4.19.0-loongson-3-desktop

下载 Qt 源码

这里使用国内的镜像地址下载源码

Qt 5.15.2: http://mirrors.ustc.edu.cn/qtproject/archive/qt/5.15/5.15.2/single/

由于龙芯 3A5000 CPU 采用了全新的 LoongArch 架构,所以直接编译 Qt 源码通常会有问题,尤其是 QWebEngine 不支持 LoongArch 架构。不过,可能高版本会好些,我编译 5.15.9 版本一次编译通过,而 5.15.2 编译的时候就 Segmentation fault

所以需要向龙芯那边的人,要来针对 LoongArch 适配的 Qt 源码包,通常是有 patch 的源码包。然后使用提供的这个源码包进行编译即可,不过截止此文发表时间 2023-11-12,龙芯那边只有 Qt 5.15.2 的包,如果是其他版本,可能需要自行打 patch 适配了。

打 patch

以 QWebEngine 为例,演示如何打 patch:

$ ls
qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.debian.tar.xz  qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.dsc  qtwebengine-opensource-src_5.15.2+dfsg.orig.tar.xz

将这三个包放在同一目录下,含有 debian 字样的文件就是 patch 包。

然后使用命令自动解压并打 patch:

$ dpkg-source -x *.dsc
dpkg-source: warning: extracting unsigned source package (qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.dsc)
dpkg-source: info: extracting qtwebengine-opensource-src in qtwebengine-opensource-src-5.15.2+dfsg
dpkg-source: info: unpacking qtwebengine-opensource-src_5.15.2+dfsg.orig.tar.xz
dpkg-source: info: unpacking qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.debian.tar.xz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying run-unbundling-script.patch
dpkg-source: info: applying system-lcms2.patch
dpkg-source: info: applying system-nspr-prtime.patch
dpkg-source: info: applying system-icu-utf.patch
dpkg-source: info: applying verbose-gn-bootstrap.patch
dpkg-source: info: applying mipsel-linux-5.patch
dpkg-source: info: applying mipsel-ptrace-include.patch
dpkg-source: info: applying mipsel-no-dav1d.patch
dpkg-source: info: applying mipsel-link-atomic.patch
dpkg-source: info: applying sandbox-time64-syscalls.patch
dpkg-source: info: applying mipsel-code-range-size.patch
dpkg-source: info: applying 0001-port-chromium_qt-to-loongarch64.patch
dpkg-source: info: applying 0002-fix-third_party-for-loongarch64.patch
dpkg-source: info: applying 0003-port-breakpad-for-loongarch64.patch
dpkg-source: info: applying 0004-port-ffmpeg-to-loongarch64-for-chromium.patch
dpkg-source: info: applying 0005-port-ffmpeg-to-loongarch64-for-chromium-add-la64-rel.patch
dpkg-source: info: applying 0006-fix-third_party-for-loongarch64-add-files-for-la64.patch
dpkg-source: info: applying 0007-port-icu-for-loongarch64.patch
dpkg-source: info: applying 0008-port-lss-for-loongarch64.patch
dpkg-source: info: applying 0009-port-pdfium-for-loongarch64.patch
dpkg-source: info: applying 0010-port-swiftshader-for-loongarch64.patch
dpkg-source: info: applying 0011-port-webrtc-for-loongarch64.patch
dpkg-source: info: applying 0012-port-v8-for-loongarch64.patch
dpkg-source: info: applying 0013-make-qtwebengine-can-be-compiled-for-loongarch64.patch
dpkg-source: info: applying 0014-fix-compile-errors-for-mips64el.patch
dpkg-source: info: applying 0015-fix-compiler-internal-error-for-loongarch64.patch
dpkg-source: info: applying 0016-fix-compile-error-for-loongarch64.patch

可以看到,patch 已经自动打好了,并在 qtwebengine-opensource-src-5.15.2+dfsg 目录下

$ ls
qtwebengine-opensource-src-5.15.2+dfsg  qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.debian.tar.xz  qtwebengine-opensource-src_5.15.2+dfsg-lnd.3.dsc  qtwebengine-opensource-src_5.15.2+dfsg.orig.tar.xz

但是,龙芯提供的源码包有文件缺失的情况,这个后面编译时会遇到对应的错误。

环境配置

安装 Qt 所需的依赖:

sudo apt install build-essential libgl1-mesa-dev libxkbcommon-dev libnss3-dev libdbus-1-dev gperf flex bison

安装 xcb 相关:

sudo apt-get install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev

这一步比较关键,因为涉及到编译之后有 libqxcb.so,如果缺失会导致错误。

如果需要使用到 QWebEngine 模块,那么需要安装以下依赖库:

sudo apt install libxcursor-dev libxcomposite-dev libxdamage-dev libxrandr-dev libxtst-dev libxss-dev libdbus-1-dev libevent-dev libfontconfig1-dev libcap-dev libpulse-dev libudev-dev libpci-dev libnss3-dev libasound2-dev libegl1-mesa-dev gperf bison nodejs

编译 Qt

进入解压后的 qt-everywhere-src-5.15.2 目录,开始配置:

./configure -prefix /home/leo/Qt -opensource -confirm-license -nomake examples -release
  • -prefix /home/leo/Qt: 指定 Qt 的安装路径
  • -opensource: 指定使用开源版本
  • -nomake examples: 不编译 examples
  • -release: release 模式

这个步骤会检查相关的库是否存在,若不存在则将缺少的安装。
安装完缺失的依赖库后,记得先删除 config.cache 缓存文件。

或者使用脚本运行,创建 run.sh 脚本:

#! /bin/bash
./configure -prefix /home/leo/Qt/5 \
-opensource -confirm-license \
-nomake examples \
-nomake tests \
-release \
-skip qt3d \
-skip qtcharts \
-skip qtandroidextras \
-skip qtlocation \
-skip qtmultimedia \
-skip qtsensors \
-skip qtserialbus \
-skip qtserialport \
-skip qtwayland

可以指定跳过编译哪些模块以加快编译速度,如果你不需要 QWebEngine,那么推荐跳过编译,这样能大幅加快编译速度,同时能避免因 QWebEngine 导致的编译错误。

开始编译:

make

在编译过程中,可能会遇到一些依赖问题,需要根据实际情况进行解决。

编译完成后即可安装

make install

编译 QWebEngine(可选)

编译 QWebEngine 这一步是因为需要开启音视频功能,支持 H264 编码格式等。

配置编译好的 Qt 环境到 .bashrc,之后创建 build 文件夹,执行命令:

qmake ../qtwebengine.pro -- -webengine-proprietary-codecs
make

输出信息:

g++ -Wl,--no-undefined -Wl,--version-script,QtPdfWidgets.version -Wl,-O1 -Wl,--enable-new-dtags -Wl,-z,origin -Wl,-rpath,\$ORIGIN -Wl,-rpath-link,/home/geit/Qt/5.15.2/lib -shared -Wl,-soname,libQt5PdfWidgets.so.5 -o libQt5PdfWidgets.so.5.15.2 .obj/qpdfview.o  /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/lib/libQt5Pdf.so /home/geit/Qt/5.15.2/lib/libQt5Widgets.so /home/geit/Qt/5.15.2/lib/libQt5Gui.so /home/geit/Qt/5.15.2/lib/libQt5Core.so -lpthread -lGL   
ln -s libQt5PdfWidgets.so.5.15.2 libQt5PdfWidgets.so
ln -s libQt5PdfWidgets.so.5.15.2 libQt5PdfWidgets.so.5
ln -s libQt5PdfWidgets.so.5.15.2 libQt5PdfWidgets.so.5.15
rm -f ../../lib/libQt5PdfWidgets.so.5.15.2
mv -f libQt5PdfWidgets.so.5.15.2 ../../lib/libQt5PdfWidgets.so.5.15.2
rm -f ../../lib/libQt5PdfWidgets.so
rm -f ../../lib/libQt5PdfWidgets.so.5
rm -f ../../lib/libQt5PdfWidgets.so.5.15
mv -f libQt5PdfWidgets.so ../../lib/libQt5PdfWidgets.so
mv -f libQt5PdfWidgets.so.5 ../../lib/libQt5PdfWidgets.so.5
mv -f libQt5PdfWidgets.so.5.15 ../../lib/libQt5PdfWidgets.so.5.15
make[2]: 离开目录“/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/pdfwidgets”
make[1]: 离开目录“/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src”

编译完之后,就可以安装到 Qt 的路径下:

$ make installgeit@geit:~/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build$ make install
cd src/ && ( test -e Makefile || /home/geit/Qt/5.15.2/bin/qmake -o Makefile /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/src.pro ) && make -f Makefile install
make[1]: 进入目录“/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src”....make[2]: 进入目录“/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core”
( test -e Makefile.core_headers || /home/geit/Qt/5.15.2/bin/qmake -o Makefile.core_headers /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/core/core_headers.pro ) && make -f Makefile.core_headers install
make[3]: 进入目录“/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core”
sed  -e 's,/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/lib,$$[QT_INSTALL_LIBS],g' -e 's,/home/geit/Qt/5.15.2/lib,$$[QT_INSTALL_LIBS],g' ../../lib/libQt5WebEngineCore.prl > /home/geit/Qt/5.15.2/lib/libQt5WebEngineCore.prl
sed  -e s,/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/lib,=/home/geit/Qt/5.15.2/lib,g ../../lib/Qt5WebEngineCore.la > /home/geit/Qt/5.15.2/lib/Qt5WebEngineCore.la
/home/geit/Qt/5.15.2/bin/qmake -install qinstall /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/include/QtWebEngineCore/QWebEngineCallback /home/geit/Qt/5.15.2/include/QtWebEngineCore/QWebEngineCallback

错误解决

如果没看到错误,可以使用 make -j1 单进程编译,然后错误信息就能看到了。

  1. 找不到 sqlite3.h 头文件
/home/geit/Documents/qt-everywhere-src-5.15.2/qtbase/src/plugins/sqldrivers/sqlite/qsql_sqlite.cpp:66:10: fatal error: sqlite3.h: 没有那个文件或目录
#include <sqlite3.h>

这个问题,就是因为龙芯提供的 qtbase 源码包有 debian rules 文件,rules 里做了一些修改,指定使用系统的 sqlite。可以将 qt-everywhere-src-5.15.2 里的 qtbase 拷贝到目前的编译目录,最好使用文件管理器进行,因为可以选择合并,跳过替换,这样就相当于只把缺失的文件给拷贝过来了。

  1. error: cast from ‘QTJSC::JSCell*’ to ‘int32_t’ {aka ‘int’} loses precision
/home/geit/Documents/qt-everywhere-src-5.15.2/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h: In constructor ‘QTJSC::JSValue::JSValue(QTJSC::JSCell*)’:
/home/geit/Documents/qt-everywhere-src-5.15.2/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h:493:57: error: cast from ‘QTJSC::JSCell*’ to ‘int32_t’ {aka ‘int’} loses precision [-fpermissive]u.asBits.payload = reinterpret_cast<int32_t>(ptr);^
/home/geit/Documents/qt-everywhere-src-5.15.2/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h: In constructor ‘QTJSC::JSValue::JSValue(const QTJSC::JSCell*)’:
/home/geit/Documents/qt-everywhere-src-5.15.2/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h:505:78: error: cast from ‘QTJSC::JSCell*’ to ‘int32_t’ {aka ‘int’} loses precision [-fpermissive]u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));^
make[3]: *** [Makefile:3960:obj/release/JSBase.o] 错误 1

原因已经告诉你了,‘QTJSC::JSCell*’ 转’int 32_t’会丢失精度。
那么我们打开这个文件对应行,进行修改即可。

qt-everywhere-src-5.15.2/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h 跳转到 493 行和 505 行,把 int_32_t 改成 int 64_t 即可:

u.asBits.payload=reinterpret_cast<int32_t>(ptr); -> u.asBits.payload=reinterpret_cast<int64_t>(ptr);
u.asBits.payload=reinterpret_cast<int_32_t>(const_cast<JSCell*>(ptr)); -> u.asBits.payload=reinterpret_cast<int64_t>(const_cast<JSCell*>(ptr));
ninja: Entering directory `/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core/release'
ninja: error: '../../../../src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/lighthouse-dt-bundle. js', needed by 'resources/inspector/root. js', missing and no known rule to make it
make[3]: *** [Makefile. gn_run:460:run_ninja] 错误 1

遇到这个错误是因为,debain rules 把这些文件删除了,可以从qt-everywhere-src-5.15.2/qtwebengine/src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/路径下将缺失的文件拷贝过去即可

ninja: Entering directory `/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core/release'
ninja: error: '../../../../src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/report-assets/report-generator. js', needed by 'resources/inspector/root. js', missing and no known rule to make it
make[3]: *** [Makefile. gn_run:460:run_ninja] 错误 1

问题同上,解决方案也是一致,拷贝缺失的文件

/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/3 rdparty/ninja/ninja -v  -C /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core/release QtWebEngineCore
ninja: Entering directory `/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/build/src/core/release'
ninja: error: '../../../../src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/diff/diff_match_patch. js', needed by 'resources/inspector/root. js', missing and no known rule to make it
make[3]: *** [Makefile. gn_run:460:run_ninja] 错误 1

问题同上,解决方案也是一致,拷贝缺失的文件

简便方法:可以直接将qt-everywhere-src-5.15.2/qtwebengine/src/3 rdparty/chromium/third_party/devtools-frontend/src路径下的文件全都拷贝过去

<structure compress="gzip" file="../../../third_party/web-animations-js/sources/web-animations-next-lite.min.js" name="IDR_POLYMER_1_0_WEB_ANIMATIONS_JS_WEB_ANIMATIONS_NEXT_LITE_MIN_JS" type="chrome_html" />: [Errno 2] No such file or directory: '/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/web-animations-js/sources/web-animations-next-lite. min. js'
Traceback (most recent call last):File "../../../../src/3 rdparty/chromium/tools/grit/grit. py", line 29, in <module>sys.exit (grit. grit_runner.Main (sys. argv[1:]))File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/grit_runner. py", line 314, in Mainreturn toolobject.Run (options, args[1:])File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/tool/build. py", line 266, in Runself.res.RunGatherers ()File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/misc. py", line 665, in RunGatherersnode.RunPreSubstitutionGatherer (debug=debug)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/structure. py", line 240, in RunPreSubstitutionGathererself.gatherer.Parse ()File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/gather/chrome_html. py", line 374, in Parseutil.ReadFile (filename, 'utf-8'),File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/util. py", line 216, in ReadFilewith io.open (abs (filename), mode, encoding=encoding) as f:
IOError: [Errno 2] No such file or directory: '/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/web-animations-js/sources/web-animations-next-lite. min. js'

很明显,web-animations-js 库文件缺失。

<structure compress="gzip" file="../../../third_party/polymer/v3_0/components-chromium/polymer/polymer_bundled.min.js" name="IDR_POLYMER_3_0_POLYMER_POLYMER_BUNDLED_MIN_JS" type="chrome_html" />: [Errno 2] No such file or directory: '/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/polymer/v 3_0/components-chromium/polymer/polymer_bundled. min. js'
Traceback (most recent call last):File "../../../../src/3 rdparty/chromium/tools/grit/grit. py", line 29, in <module>sys.exit (grit. grit_runner.Main (sys. argv[1:]))File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/grit_runner. py", line 314, in Mainreturn toolobject.Run (options, args[1:])File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/tool/build. py", line 266, in Runself.res.RunGatherers ()File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/misc. py", line 665, in RunGatherersnode.RunPreSubstitutionGatherer (debug=debug)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/structure. py", line 240, in RunPreSubstitutionGathererself.gatherer.Parse ()File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/gather/chrome_html. py", line 374, in Parseutil.ReadFile (filename, 'utf-8'),File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/util. py", line 216, in ReadFilewith io.open (abs (filename), mode, encoding=encoding) as f:
IOError: [Errno 2] No such file or directory: '/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/polymer/v 3_0/components-chromium/polymer/polymer_bundled. min. js'

这次是 polymer 缺失文件

FAILED: gen/ui/resources/webui_resources_grd_grit. d. stamp gen/ui/resources/grit/webui_resources. h gen/ui/resources/grit/webui_resources_map. cc gen/ui/resources/grit/webui_resources_map. h gen/ui/resources/webui_resources. pak gen/ui/resources/webui_resources. pak. info 
/usr/bin/python 2 ../../../../src/3 rdparty/chromium/tools/grit/grit. py -i ../../../../src/3 rdparty/chromium/ui/webui/resources/webui_resources. grd build -o gen/ui/resources --depdir . --depfile gen/ui/resources/webui_resources_grd_grit. d --write-only-new=1 --depend-on-stamp -D scale_factors=2 x -D _chromium -E CHROMIUM_BUILD=chromium -D desktop_linux -D use_aura -D use_nss_certs -D use_ozone -t linux 2 -D optimize_webui=false -E root_gen_dir=gen -f gen/tools/gritsettings/default_resource_ids --assert-file-list obj/ui/resources/webui_resources_grd_expected_outputs. txt
Error processing node <?xml version="1.0" encoding="UTF-8"?>
<include compress="gzip" file="js/jstemplate_compiled.js" flattenhtml="true" name="IDR_WEBUI_JSTEMPLATE_JS" type="BINDATA" />: Failed to open /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/jstemplate/jstemplate_compiled. js while trying to flatten ../../../../src/3 rdparty/chromium/ui/webui/resources/js/jstemplate_compiled. js. (No such file or directory)
Traceback (most recent call last):File "../../../../src/3 rdparty/chromium/tools/grit/grit. py", line 29, in <module>sys.exit (grit. grit_runner.Main (sys. argv[1:]))File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/grit_runner. py", line 314, in Mainreturn toolobject.Run (options, args[1:])File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/tool/build. py", line 274, in Runself.Process ()File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/tool/build. py", line 409, in Processself.ProcessNode (self. res, output, tmpfile)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/tool/build. py", line 333, in ProcessNodeformatted = formatter (node, output_node.GetLanguage (), output_dir=base_dir)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/format/data_pack. py", line 90, in Formatvalue = node.GetDataPackValue (lang, util. BINARY)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/include. py", line 104, in GetDataPackValuedata = self._GetFlattenedData (allow_external_script=allow_external_script)File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/node/include. py", line 41, in _GetFlattenedDataallow_external_script=allow_external_script))File "/home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/tools/grit/grit/format/html_inline. py", line 551, in InlineToString(e.filename, input_filename, e.strerror))
Exception: Failed to open /home/geit/Documents/qtwebengine-opensource-src-5.15.2+dfsg/src/3 rdparty/chromium/third_party/jstemplate/jstemplate_compiled. js while trying to flatten ../../../../src/3 rdparty/chromium/ui/webui/resources/js/jstemplate_compiled. js. (No such file or directory)

jstemplate 库文件缺失

/usr/bin/ld: 找不到 -llcms2
collect 2: error: ld returned 1 exit status
make[3]: *** [Makefile. core_module:90:../../lib/libQt 5 WebEngineCore. so. 5.15.2] 错误 1

安装

sudo apt install liblcms2-dev

其实这个也是由于 rules 文件导致的错误,它指定使用系统的 libcms2 库

文件缺失原因

rules

先附上 debian 文件夹下的 rules 文件:

#!/usr/bin/make -f# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export NINJA_PATH=/usr/bin/ninja
export NINJAFLAGS=-v
include /usr/share/dpkg/default. mkDEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)# TODO: properly integrate with the other debug setting
ifeq (32,$(DEB_HOST_ARCH_BITS))export DEB_CFLAGS_MAINT_APPEND = -g 1export DEB_CXXFLAGS_MAINT_APPEND = -g 1
endifexport CFLAGS := $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS)
export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) $(shell dpkg-buildflags --get CPPFLAGS)
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
export QT_SELECT := qt 5VERSION_CLEAN_UPSTREAM = $(call dpkg_late_eval, VERSION_CLEAN_UPSTREAM, echo '$(DEB_VERSION_UPSTREAM)' | sed -e 's/\(~\|+\).*//')DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)ifeq (yes,$(shell dpkg-vendor --derives-from Ubuntu && echo yes))
ifeq ($(DEB_HOST_ARCH), arm 64)export NINJAFLAGS += -j 2
endif
endifgstab_architectures :=
fulldebug_architectures :=
disabled_jit_architectures := armel mips mipsel mips 64 el loongarch 64
disabled_pch_architectures := amd 64 powerpc s 390 xsmall_architectures := armhf mipsel
no_gold_architectures := arm 64 armhf mipsel mips 64 el loongarch 64config_args = -proprietary-codecs \-system-webp \touch_files = src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/lighthouse-dt-bundle. js \src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/report-assets/report-generator. js \src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/diff/diff_match_patch. js \src/3 rdparty/chromium/third_party/devtools-frontend/src/front_end/formatter_worker/acorn/acorn. js \src/3 rdparty/chromium/third_party/polymer/v 3_0/components-chromium/polymer/polymer_bundled. min. js \src/3 rdparty/chromium/third_party/web-animations-js/sources/web-animations-next-lite. min. js %:dh $@ --with pkgkde_symbolshelperoverride_dh_auto_clean:dh_auto_cleanrm -f .qmake. cacherm -f config. tests/. qmake. cacherm -f qtwebengine-config. hrm -rf $(CURDIR)/test_rootrm -rf $(CURDIR)/docsrm -rf $(CURDIR)/. localrm -f $(CURDIR)/src/3 rdparty/chromium/third_party/jstemplate/jstemplate_compiled. jsrm -f $(CURDIR)/src/3 rdparty/chromium/third_party/mocha/mocha. jsrm -f $(CURDIR)/examples/webenginewidgets/contentmanipulation/jquery*. jsfor fname in $(touch_files); do \rm -f $(CURDIR)/$${fname}; \doneoverride_dh_auto_configure:# Run qmake once to create .qmake. conf and be sure to append the following values.qmake QT_BUILD_PARTS+=tests QMAKE_EXTRA_ARGS+="$(config_args)" QMAKE_PYTHON 2=python 2# Enable gstabs debugging symbols only on gstab_architectures.
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(gstab_architectures)))echo "QMAKE_CXXFLAGS -= -g" >> .qmake. confecho "QMAKE_CXXFLAGS += -gstabs" >> .qmake. conf
# Enable normal debugging symbols only on fulldebug_architectures.
else ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(fulldebug_architectures)))echo "QMAKE_CXXFLAGS_DEBUG += -fdebug-types-section" >> .qmake. confecho "QMAKE_CXXFLAGS += -fdebug-types-section" >> .qmake. confecho "QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += -fdebug-types-section" >> .qmake. confecho "QMAKE_CXXFLAGS_RELEASE += -fdebug-types-section" >> .qmake. confecho "QMAKE_LFLAGS += -fdebug-types-section" >> .qmake. conf
else
# Disable debugging symbols in all the other archs.echo "QMAKE_CFLAGS -= -g" >> .qmake. confecho "QMAKE_CFLAGS -= -gstabs" >> .qmake. confecho "QMAKE_CXXFLAGS -= -g" >> .qmake. confecho "QMAKE_CXXFLAGS -= -gstabs" >> .qmake. confecho "QT_CONFIG -= force_debug_info" >> .qmake. confecho "QT_CONFIG -= separate_debug_info" >> .qmake. conf
endif# Disable JIT on selected architectures
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(disabled_jit_architectures)))echo "QMAKE_CXXFLAGS += -DENABLE_JIT=0" >> .qmake. conf
endif# Disable header precompliation as it creates invalid includes on certain
# architectures causing build failure. LP: 1395661
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(disabled_pch_architectures)))echo "CONFIG -= precompile_header" >> .qmake. conf
endififeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(small_architectures)))echo "QMAKE_CXXFLAGS += --param ggc-min-expand=20" >> .qmake. confecho "QMAKE_CFLAGS += --param ggc-min-expand=20" >> .qmake. confecho "QMAKE_LFLAGS -= Wl,--gc-sections" >> .qmake. conf
endififeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(no_gold_architectures)))# Do not use ld. goldecho "QMAKE_LFLAGS -= -fuse-ld=gold" >> .qmake. confecho "QMAKE_LFLAGS += -fuse-ld=bfd" >> .qmake. conf
endif# Make ld not cache the symbol tables of input files in memory to avoid memory exhaustion during the linking phase.echo "QMAKE_LFLAGS += -Wl,--no-keep-memory" >> .qmake. conf# Missing hardening flag detected by blhcecho "QMAKE_LFLAGS += -Wl,-z, now" >> .qmake. conf# Run qmake again now with the proper values.qmake QT_BUILD_PARTS+=tests QMAKE_EXTRA_ARGS+="$(config_args)" QMAKE_PYTHON 2=python 2# Create js files, that are needed for building step for arch and indep buildscd $(CURDIR)/src/3 rdparty/chromium/third_party/jstemplate/; \closure-compiler --compilation_level ADVANCED_OPTIMIZATIONS \--js util. js \--js jsevalcontext. js \--js jstemplate. js \--js exports. js \--js_output_file jstemplate_compiled. js>examples/webenginewidgets/contentmanipulation/jquery. js cat debian/missing-sources/jquery-*. jsyui-compressor --type js "examples/webenginewidgets/contentmanipulation/jquery. js" -o "examples/webenginewidgets/contentmanipulation/jquery. min. js">src/3 rdparty/chromium/third_party/mocha/mocha. js tar xaf debian/missing-sources/mocha*. tar. gz --wildcards --to-stdout '*/mocha. js'set -ex; for fname in $(touch_files); do \mkdir -p $(CURDIR)/$$(dirname $${fname}); \touch $(CURDIR)/$${fname}; \doneoverride_dh_auto_build-arch:dh_auto_build -- -Onone#we also need the resources. pak files, so we need the normal build.
override_dh_auto_build-indep: override_dh_auto_build-archdh_auto_build -- docsoverride_dh_auto_install-arch:dh_auto_install# Remove rpath from the offending binarieschrpath -d $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/qt 5/libexec/QtWebEngineProcess# Fix wrong path in pkgconfig filesfind $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig -type f -name '*. pc' \-exec sed -i -e 's/$(DEB_HOST_MULTIARCH)\/$(DEB_HOST_MULTIARCH)/$(DEB_HOST_MULTIARCH)/g' {} \;# Remove libtool-like filesrm -fv debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*. laoverride_dh_auto_install-indep: override_dh_auto_install-archdh_auto_build -- INSTALL_ROOT=$(CURDIR)/debian/tmp install_docsoverride_dh_link:dh_link --package=qtwebengine 5-examples \usr/share/javascript/jquery/jquery. min. js usr/lib/$(DEB_HOST_MULTIARCH)/qt 5/examples/webenginewidgets/contentmanipulation/jquery. min. js \usr/share/javascript/marked/marked. min. js usr/lib/$(DEB_HOST_MULTIARCH)/qt 5/examples/webenginewidgets/markdowneditor/resources/marked. jsdh_link --package=qtwebengine 5-dev-tools \usr/lib/qt 5/bin/qwebengine_convert_dict usr/lib/$(DEB_HOST_MULTIARCH)/qt 5/bin/qwebengine_convert_dictdh_link --remaining-packagesoverride_dh_auto_test-arch:$(MAKE) install -Csrc/core INSTALL_ROOT=$(CURDIR)/test_root-QTWEBENGINEPROCESS_PATH=$(CURDIR)/libexec/QtWebEngineProcess xvfb-run -a \-s "-screen 0 1024 x 768 x 24 +extension RANDR +extension RENDER +extension GLX" \dh_auto_test --no-parallel -- -k \QML 2_IMPORT_PATH=$(CURDIR)/test_root/usr/lib/$(DEB_HOST_MULTIARCH)/qt 5/qml \LD_LIBRARY_PATH=$(CURDIR)/liboverride_dh_auto_test-indep:# Do not attempt to run anything to make build-indep work

可以看到,rules 文件里,故意删除了那些文件,那么为什么呢,后来在 README 文件中找到了答案

原因

xx/qtwebengine-opensource-src-5.15.2+dfsg/debian/missing-sources$ cat README                                                                                             
Missing source files                                                                                         
--------------------                                                                                         
QtWebEngine ships embeded minified javascript libraries.                                                     
The GPL requires you to provide the corresponding source code.                                               
For Debian all missing sources are bundled in this directory.                                                
They have been grabbed from the various upstream projects.                                                   
Last synchronization was made with QtWebEngine v5.9.2 at 2017-09-19.                                         
Files: examples/webenginewidgets/contentmanipulation/jquery.min.js                                           
Project: jQuery v1.3.2                                                                                       
License: Expat or GPL                                                                                        
Source: http://code.jquery.com/jquery-1.3.2.js                                                               
Files: examples/webenginewidgets/markdowneditor/resources/3rdparty/marked.min.js                             
Project: marked 0.3.6                                                                                        
License: Expat                                                                                               
Source: https://github.com/chjj/marked/archive/v0.3.6.tar.gz                                                                                          
Files: examples/webengine/recipebrowser/resources/pages/assets/3rdparty/marked.min.js                        
Project: marked 0.3.6                   
License: Expat  
Source: https://github.com/chjj/marked/archive/v0.3.6.tar.gz                         
Files: src/3rdparty/chromium/third_party/mocha/mocha.js          
Project: Mocha 2.5.3                    
License: MIT             
Source: https://github.com/mochajs/mocha/archive/v2.5.3.tar.gz   

简而言之,就是版权问题。

总结

以上便是在国产龙芯 CPU 架构国产 Linux 系统下编译 Qt 源码的整个过程。需要注意的就是,要使用已打好patch的源码包,即针对 LoongArch 架构适配之后的。

同时要注意,使用龙芯提供的源码包时,由于 debian 的 rules 文件将一些文件删除了,导致使用 Qt 官方编译方式会编译错误,所以需要自己补上缺失的文件。当然,如果使用 Debian dpkg-buildpackage -us -uc -tc -b的编译方式就不需要了。

https://www.cnblogs.com/tingtaishou/p/17387763.html
https://blog.csdn.net/2301_77077496/article/details/133315507
https://www.xssl.online/uos%e7%bc%96%e8%af%91qt-%e9%be%99%e8%8a%af/
https://loongson.github.io/LoongArch-Documentation/LoongArch-toolchain-conventions-CN.html#cc%E9%A2%84%E5%A4%84%E7%90%86%E5%99%A8%E5%86%85%E5%BB%BA%E5%AE%8F%E5%AE%9A%E4%B9%89

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/151422.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于SSM的高校毕业选题管理系统设计与实现

末尾获取源码 开发语言&#xff1a;Java Java开发工具&#xff1a;JDK1.8 后端框架&#xff1a;SSM 前端&#xff1a;采用JSP技术开发 数据库&#xff1a;MySQL5.7和Navicat管理工具结合 服务器&#xff1a;Tomcat8.5 开发软件&#xff1a;IDEA / Eclipse 是否Maven项目&#x…

PTA天梯赛座位分配

天梯赛每年有大量参赛队员&#xff0c;要保证同一所学校的所有队员都不能相邻&#xff0c;分配座位就成为一件比较麻烦的事情。为此我们制定如下策略&#xff1a;假设某赛场有 N 所学校参赛&#xff0c;第 i 所学校有 M[i] 支队伍&#xff0c;每队 10 位参赛选手。令每校选手排…

关于js中数组push之后长度明明有但是获取长度和随意的数组下标的时候不正常的问题

前言 &#xff01; 注意&#xff1a; 本文并没有解决这个问题 只提供思路&#xff0c;如果急需解决问题请查看其他的文章 原因 我使用的默认导出格式 但是也使用了setup语法糖 在获取后端数据的时候使用了then处理返回的数据 在数据处理中我经获取到的数据push到数组中 其中…

持续集成部署-k8s-配置与存储-配置管理:SubPath

持续集成部署-k8s-配置与存储-配置管理:SubPath 1. 简介2. 测试 挂载文件目录3. subPath 解决挂载目录时覆盖原容器内文件夹1. 简介 在Kubernetes (K8s) 中,SubPath是用于指定容器内部目录挂载的一个属性。它可以在Pod中指定某个Volume挂载到容器内部的特定目录下,以便容器…

flink源码分析之功能组件(一)-metrics

简介 本系列是flink源码分析的第二个系列,上一个《flink源码分析之集群与资源》分析集群与资源,本系列分析功能组件,kubeclient,rpc,心跳,高可用,slotpool,rest,metric,future。其中kubeclient上一个系列介绍过,本系列不在介绍。 本文介绍flink metrics组件,metric…

OceanBase 4.2.1 LTS 发版 | 一体化数据库首个长期支持版本

在刚刚结束的年度发布会上&#xff0c;OceanBase 沿着“一体化”产品战略思路&#xff0c;发布了一体化数据库的首个长期支持版本 4.2.1 LTS。作为 4.0 系列的第一个 LTS 版本&#xff0c;该版本的定位是支撑客户关键业务稳定长久运行&#xff0c;我们非常认真的打磨了这个版本…

Java学习之路 —— 多线程

文章目录 1. 线程创建方式1.1 继承Thread1.2 声明一个实现Runnable接口的类1.3 利用Callable接口、FutureTask类来实现 2. 线程同步2.1 同步代码块2.2 同步方法2.3 Lock锁 3. 线程同步4. 线程池 1. 线程创建方式 1.1 继承Thread 定义子类&#xff0c;继承Thread&#xff0c;创…

Android描边外框stroke边线、rotate旋转、circle圆形图的简洁通用方案,基于Glide与ShapeableImageView,Kotlin

Android描边外框stroke边线、rotate旋转、circle圆形图的简洁通用方案&#xff0c;基于Glide与ShapeableImageView&#xff0c;Kotlin 利用ShapeableImageView专门处理圆形和外框边线的特性&#xff0c;通过Glide加载图片装载到ShapeableImageView。注意&#xff0c;因为要描边…

Docker 容器中的网络优化与 DNS 缓存清理

在使用Docker 18.03.1-ce版本在Ubuntu 18.04 LTS上运行多个Docker容器时&#xff0c;我发现当使用requests库发送请求到某个主机名时&#xff0c;响应速度非常慢。在本例中&#xff0c;每个容器都有自己的CherryPy服务器&#xff0c;并通过requests.get(http://main:8083)或req…

Nginx 413 Request Entity Too Large

当出现上图时候 更改nginx config 文件 在http{}或者server{}或者location{}中增加client_max_body_size 100m; 然后重启nginx 服务就好了

本地部署AutoGPT

我们都了解ChatGPT&#xff0c;是Openai退出的基于GPT模型的新一代 AI助手&#xff0c;可以帮助解决我们在多个领域的问题。但是你会发现&#xff0c;在某些问题上&#xff0c;ChatGPT 需要经过不断的调教与沟通&#xff0c;才能得到接近正确的答案。对于你不太了解的领域领域&…

轻松搭建短域名短链接服务系统,可选权限认证,并自动生成证书认证把nginx的http访问转换为https加密访问,完整步骤和代码

轻松搭建短域名短链接服务系统&#xff0c;可选权限认证&#xff0c;并自动生成证书认证把nginx的http访问转换为https加密访问&#xff0c;完整步骤和代码。 在互联网信息爆炸的时代&#xff0c;网址复杂而冗长&#xff0c;很难在口头告知他人&#xff0c;也难以分享到社交媒体…

11 月 18 日 ROS 学习笔记——可视化和调试工具

文章目录 前言一、调试 ROS 节点1. gdb 调试器2. 在 ROS 节点启动时调用 gdb 调试器3. 在 ROS 节点启动时调用 valgrind 分析节点4. 设置 ROS 节点 core 文件转储5. 日志消息1). 输出日志消息2). 设置调试消息级别 二、检测系统状态1. rqt_graph2. 可视化坐标变换3. 保存与回放…

trzsz支持文件拖动到终端进行上传,类似lrzsz

考虑到 LapTop -> Host 1 -> Host 2 -> Docker -> TMUX&#xff0c;使用scp或sftp命令不方便&#xff1b;使用rz和sz命令就会方便很多&#xff0c;但是却又与 TMUX 不兼容&#xff08;备注&#xff1a;Tmux是一个终端复用工具&#xff0c;允许用户在一个终端窗口中…

Hello World分析

文章目录 代码分析源代码代码解析注释单行注释多行注释 代码分析 源代码 以下就是我们上一个文章中编写过的程序。大家一定注意到&#xff0c;这个代码相比上一个代码多了很多的内容&#xff0c;这些内容并不影响程序的运行&#xff0c;因为这些是注释内容&#xff0c;本章节会…

前端食堂技术周刊第 105 期:TS 5.3 RC、Vite 5.0、W3C 新任 CEO、有害的 Pinia 模式、2024 更快的 Web

美味值&#xff1a;&#x1f31f;&#x1f31f;&#x1f31f;&#x1f31f;&#x1f31f; 口味&#xff1a;金桂普洱 食堂技术周刊仓库地址&#xff1a;https://github.com/Geekhyt/weekly 大家好&#xff0c;我是童欧巴。欢迎来到前端食堂技术周刊&#xff0c;我们先来看下…

初学UE5 C++②

目录 导入csv表格数据 创建、实例化、结构体 GameInstance Actor camera 绑定滚轮控制摇臂移动 碰撞绑定 角色碰撞设定 按钮 UI显示 单播代理 多播和动态多播 写一个接口 其他 NewObject 和 CreateDefaultSubobject区别 导入csv表格数据 创建一个object的C类 …

设计模式-责任链-笔记

动机&#xff08;Motivation&#xff09; 在软件构建过程中&#xff0c;一个请求可能被多个对象处理&#xff0c;但是每个请求在运行时只能有个接受者&#xff0c;如果显示指定&#xff0c;将必不可少地带来请求者与接受者的紧耦合。 如何使请求的发送者不需要指定具体的接受…

linux nas

挂载到本地 mkdir -p /mnt/mountnasdir mount -t nfs 192.168.62:/cnas_id10086_vol10010_dev/ /mnt/mountnasdir

ORA-00600 【3948】,ORA-00600 【3949】

前言 这个报错没有从ORA600那个tool中查到。 回顾 环境 环境是windows 11203 rac环境&#xff0c;非归档数据库 有部分数据文件建到了本地文件系统。目标是将部分数据文件通过switch to copy的形式移动到diskgroup里 流程 srvctl关闭双节点&#xff0c; 启动单节点到moun…