Skip to content

Commit

Permalink
Fix #1065: Switch to Qt 6.7.3 for macOS and Windows
Browse files Browse the repository at this point in the history
With this commit macOS and Windows builds switch to Qt 6.7.3

Here is the release note:
https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.7.3/release-note.md

#codehealth

PiperOrigin-RevId: 679825081
  • Loading branch information
yukawa authored and hiroyuki-komatsu committed Sep 28, 2024
1 parent 25af2a6 commit c768d7f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/build_mozc_in_osx.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ python build_tools/update_deps.py
In this step, additional build dependencies will be downloaded.

* [Ninja 1.11.0](https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-mac.zip)
* [Qt 6.7.2](https://download.qt.io/archive/qt/6.7/6.7.2/submodules/qtbase-everywhere-src-6.7.2.tar.xz)
* [Qt 6.7.3](https://download.qt.io/archive/qt/6.7/6.7.3/submodules/qtbase-everywhere-src-6.7.3.tar.xz)
* [git submodules](../.gitmodules)

You can specify `--noqt` option if you would like to use your own Qt binaries.
Expand Down
2 changes: 1 addition & 1 deletion docs/build_mozc_in_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ python build_tools/update_deps.py
In this step, additional build dependencies will be downloaded.

* [Ninja 1.11.0](https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-win.zip)
* [Qt 6.7.2](https://download.qt.io/archive/qt/6.7/6.7.2/submodules/qtbase-everywhere-src-6.7.2.tar.xz)
* [Qt 6.7.3](https://download.qt.io/archive/qt/6.7/6.7.3/submodules/qtbase-everywhere-src-6.7.3.tar.xz)
* [.NET tools](../dotnet-tools.json)
* [git submodules](../.gitmodules)

Expand Down
4 changes: 2 additions & 2 deletions src/build_tools/build_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
By default, this script assumes that Qt archives are stored as
src/third_party_cache/qtbase-everywhere-src-6.7.2.tar.xz
src/third_party_cache/qtbase-everywhere-src-6.7.3.tar.xz
and Qt src files that are necessary to build Mozc will be checked out into
Expand Down Expand Up @@ -69,7 +69,7 @@
ABS_QT_DEST_DIR = ABS_MOZC_SRC_DIR.joinpath('third_party', 'qt')
# The archive filename should be consistent with update_deps.py.
ABS_QT6_ARCHIVE_PATH = ABS_MOZC_SRC_DIR.joinpath(
'third_party_cache', 'qtbase-everywhere-src-6.7.2.tar.xz')
'third_party_cache', 'qtbase-everywhere-src-6.7.3.tar.xz')
ABS_DEFAULT_NINJA_DIR = ABS_MOZC_SRC_DIR.joinpath('third_party', 'ninja')


Expand Down
6 changes: 3 additions & 3 deletions src/build_tools/update_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def __hash__(self):


QT6 = ArchiveInfo(
url='https://download.qt.io/archive/qt/6.7/6.7.2/submodules/qtbase-everywhere-src-6.7.2.tar.xz',
size=49364504,
sha256='c5f22a5e10fb162895ded7de0963328e7307611c688487b5d152c9ee64767599',
url='https://download.qt.io/archive/qt/6.7/6.7.3/submodules/qtbase-everywhere-src-6.7.3.tar.xz',
size=49426156,
sha256='8ccbb9ab055205ac76632c9eeddd1ed6fc66936fc56afc2ed0fd5d9e23da3097',
)

NINJA_MAC = ArchiveInfo(
Expand Down

0 comments on commit c768d7f

Please sign in to comment.