QtXlsx适配qt6源码修改

Posted snoweo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QtXlsx适配qt6源码修改相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/muren/article/details/120701240

用mingw静态编译Qt4.8.2和Qt5.1.1(需要修改不少源码)

因为一些乱七八糟的原因,我需要用mingw静态编译Qt4.8.2和Qt5.1.1。
经历了一天的折腾之后,自觉编译一下Qt还是件颇为麻烦的事情,故将过程略作总结,以备不时之需。

首先,在编译之前,我需要下载mingwqt-everywhere-opensource-src-4.8.2qt-everywhere-opensource-src-5.1.1

然后,准备开始编译了,当然先得把压缩包解压到一个合适的地方。
我这里的路径是"C:\Qt"下面。

解压完毕后,先试着编译Qt4.8.2。
configure命令为:

 

[plain] view plain copy
 
 技术分享技术分享
  1. configure -confirm-license -opensource -prefix "C:\Qt\Qt4.8.2" -debug-and-release -static -platform win32-g++ -nomake demos -nomake examples -nomake tests -fast  

 

 

使用的选项说明:

-confirm-license -opensource 选择开源协议并确认
-prefix "C:\Qt\Qt4.8.2" 指定安装目录为"C:\Qt\Qt4.8.2"
-debug-and-release 编译debug和release版
-static 编译成静态库
-platform win32-g++ 使用mingw编译
-nomake demos -nomake examples -nomake tests 不编译这些不需要的东西
-fast 快速编译

在控制台下进入"C:\Qt\qt-everywhere-opensource-src-4.8.2",运行configure。
在编译之前,需要改一个地方:
找到"qt-everywhere-opensource-src-4.8.2\src\3rdparty\webkit\Source\WebCore\platform"下的DefaultLocalizationStrategy.cpp文件,第327行:

[cpp] view plain copy
 
 技术分享技术分享
  1. return WEB_UI_STRING("Look Up “<selection>”", ...);  


把它改成这样:(注意引号)

 

[cpp] view plain copy
 
 技术分享技术分享
  1. return WEB_UI_STRING("Look Up <selection>", ...);  

 

 

否则编译会报错。

然后运行mingw32-make开始编译。
编译完毕后,找到"qt-everywhere-opensource-src-4.8.2\src\winmain"下的Makefile.Debug文件,第215行:

[plain] view plain copy
 
 技术分享技术分享
  1. @$(CHK_DIR_EXISTS) c:$(INSTALL_ROOT)/Qt/Qt4.8.2/lib/pkgconfig $(MKDIR) c:$(INSTALL_ROOT)/Qt/Qt4.8.2/lib/pkgconfig   


改成:(注意$(CHK_DIR_EXISTS)和目录的斜杠)

 

[plain] view plain copy
 
 技术分享技术分享
  1. @if not exist c:$(INSTALL_ROOT)\Qt\Qt4.8.2\lib\pkgconfig $(MKDIR) c:$(INSTALL_ROOT)\Qt\Qt4.8.2\lib\pkgconfig   

 

 

改完后用同样的方式修改Makefile.Release。

最后mingw32-make install,大功告成。

接下来编译Qt5.1.1。
首先还是configure命令:

[plain] view plain copy
 
 技术分享技术分享
  1. configure -confirm-license -opensource -prefix "C:\Qt\Qt5.1.1" -debug-and-release -static -platform win32-g++ -opengl desktop -no-angle -nomake examples -nomake tests -skip qtwebkit  

 

使用的选项说明:(重复的就不写了)

-opengl desktop 选择desktop的opengl,不这样玩编译会挂
-no-angle 不使用angle,否则编译会挂
-nomake examples -nomake tests 不编译这些东西。其中examples,参加编译的话install会挂
-skip qtwebkit 不编译qtwebkit,否则很麻烦

在控制台下进入"C:\Qt\qt-everywhere-opensource-src-5.1.1\qtbase",运行configure。
之后依次mingw32-make、mingw32-make install,大功告成。


参考文章:

 

http://blog.csdn.net/markl22222/article/details/20734085

以上是关于QtXlsx适配qt6源码修改的主要内容,如果未能解决你的问题,请参考以下文章

framelesshelper框架学习

framelesshelper框架学习

framelesshelper框架学习

Qt6网络抓包工具项目实战3.1选择网卡适配器界面开发

VS2019编译QT6源码

VS2019编译QT6源码