返回介绍

How to patch Qt

发布于 2024-06-23 21:36:12 字数 1455 浏览 0 评论 0 收藏 0

The Qt repository is split into submudules, so pushing a fix for it is not very trivial. Let’s assume you have Krita deps built using Krita’s build scripts and you want to modify Qt and push a fix into the registry.

  1. Make a commit in QtBase submodule

    When using submodules, the submodule folder is in “detached” state without any branch assigned, so we need to reset the branch head after we make a commit:

    cd qtbase
    git commit -a -m "your commit message"
    
    # reset the branch head (make sure you don't have any local
    # changes in 'krita/5.15' branch!)
    
    git update-ref refs/heads/krita/5.15 HEAD
    git checkout krita/5.15
    git pull --rebase
    
    cd ..
    
  1. Make a commit in the root repository and push

    git checkout krita/5.15
    git pull --rebase
    git commit -a -m "commit message for the root repo"
    git push --recurse-submodules=on-demand
    
  2. Update the sha1-link in Krita’s repository

    1. Open 3rdparty/ext_qt/CMakeLists.txt

    2. Modify QT_GIT_TAG with the newly pushed sha1

    3. Push!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文