如何从源

时间:2017-11-03 16:38:31

标签: qt qt5 qtwebengine

我正在尝试从源代码构建QtWebengine,所以我所做的就是从http://code.qt.io/cgit/qt/qtwebengine.git/下载了qtwebengine

我还安装了http://wiki.qt.io/QtWebEngine/How_to_Try

上列出的所有相关内容

我按照步骤进入文件夹并运行

git submodule update --init
然后是qmake 但是我收到了这个错误:

~/Documents/qtwebengine 5.10
❯ qmake -r
Cannot read /home/austin/Documents/qtwebengine/qtwebengine-config.pri: No such file or directory
/home/austin/Documents/qtwebengine/mkspecs/features/platform.prf:68: 'qtConfig' is not a recognized test function.
/home/austin/Documents/qtwebengine/mkspecs/features/configure.prf:33: 'qtConfig' is not a recognized test function.

Required gperf could not be found.
QtWebEngine will not be built.

我是否需要创建自己的qtwebengine-config.pri文件?

ps:我目前正在使用Ubuntu 16.04 LTS

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,解决方案对我有用:

安装所有依赖项:wiki.qt.io/Building_Qt_5_from_Git

1)建立qt 5.10

git clone git://code.qt.io/qt/qt5.git qt5

cd qt5

perl init-repository --module-subset=default,-qtwebengine

./configure -developer-build -opensource -nomake examples -nomake tests

make

2)在qt5.10之后构建相同的步骤

git clone git://code.qt.io/qt/qt5.git qwebeng

cd qwebeng

perl init-repository --module-subset=qtwebengine,qtwebplugin,qtwebsoskets,qtwebview

cd qtwebengine

/yourQt5.10dir/base/bin/qmake

make -j