-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The changes of symbol.tsv
is not applied until cleaning (Windows)
#932
Comments
Hi tats-u, I guess we might need to modify data_manager/data_manager.gypi or data_manager/oss/oss_data_manager_base.gyp (or other .gyp / .gypi files). https://github.com/google/mozc/blob/master/src/data_manager/oss/oss_data_manager_base.gyp Since we are migrating the build system from GYP to Bazel (#948), we would not address this limitation. Best, |
@hiroyuki-komatsu Will Mozc64.msi be built by Bazel in the future, won't it? |
Yes, we want to build .msi files with Bazel in the future. |
I see. |
We have supported Bazel build for Windows. Please check the instruction. I will close this issue in a week if no issues are found. |
Without
|
Even with
Note: not yet terminated by this error. I wonder I should remove the stale Java 11. PS. stucked at:
|
After removing Java 11 and |
Most likely this error means bazel failed to find |
I see. We should add the link to https://bazel.build/install/windows?hl=ja#install-compilers in the Wiki page. |
My understanding is that recent versions of Bazel (or bazelisk) download JRE automatically, so you in general don't need to install Java by yourself. Note also that we will definitely make sure that our Bazel build continues to succeed on the GitHub Actions. Setting up an environment similar enough to it may help. mozc/.github/workflows/windows.yaml Lines 77 to 133 in ace3145
|
I tried MSYS2 via WinGet but it wasn't be recognized. However, I confirmed the fix of this issue. |
Description
A clear and concise description of what the bug is.
I'm trying to modify
src\data\symbol\symbol.tsv
, but its changes are difficult to be reflected because they require us to clean the build.Steps to reproduce
Steps to reproduce the behavior:
python build_mozc.py gyp
python build_mozc.py build -c Release package
src\data\symbol\symbol.tsv
python build_mozc.py build -c Release package
Mozc64.msi
& Enable MozcExpected behavior
A clear and concise description of what you expected to happen.
The change is applied
Actual behavior
A clear and concise description of what you actually got.
The change is not applied
Screenshots
If applicable, add screenshots to help explain your problem.
Version or commit-id
[e.g. Mozc-2.28.4960.100+24.11.oss or d50a8b9]
You can get the version string by converting "Version" or "ばーじょん".
6ba364e (master)
Environment
Windows 11 (on Windows Sandbox)
(Notepad)
Investigations
(e.g. Mozc-2.28.4960.100+24.11.oss).
Additional context
Add any other context about the problem here.
We have to rebuild after cleaning once (
python build_mozc.py clean
) to apply the changes insymbol.tsv
.Solutions:
The text was updated successfully, but these errors were encountered: