QT 源码静态编译 指令 包含所有子模块 和依赖
时间: 2024-03-03 15:53:09 浏览: 83
QT 静态编译
5星 · 资源好评率100%
以下是使用QT源码进行静态编译的指令,其中包含所有子模块和依赖项:
```
./configure -prefix /opt/qt-static -static -release -opensource -confirm-license -no-sql-sqlite -no-icu -no-opengl -no-gtkstyle -no-pch -no-dbus -no-openssl -no-feature-xml -no-feature-printpreview -no-feature-style-fusion -nomake examples -nomake tests -skip qtwebengine -skip qtscript -skip qtdocgallery -skip qt3d -skip qtcharts -skip qtdatavis3d -skip qtgamepad -skip qtgraphicaleffects -skip qtimageformats -skip qtlocation -skip qtmultimedia -skip qtquickcontrols -skip qtquickcontrols2 -skip qtremoteobjects -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtserialport -skip qtspeech -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebsockets -skip qtwebview -skip qtwinextras -skip qtx11extras -skip qtxmlpatterns
```
请注意,这些选项将禁用某些功能和模块,并且可以根据您的需求进行修改。在执行上述指令之前,您需要先安装所有必要的依赖项,例如libxcb、libx11等。完成编译后,您可以将生成的库文件和可执行文件复制到您的目标系统中,以便在没有QT运行时的情况下运行您的应用程序。
阅读全文