13,005
回編集
166行目: | 166行目: | ||
<br> | <br> | ||
===== Python 3.6を使用している場合 ===== | |||
vi src/base/gen_config_file_stream_data.py | |||
<br> | |||
<syntaxhighlight lang="python"> | |||
# src/base/gen_config_file_stream_data.pyファイル | |||
# 68行目あたり | |||
## 編集前 | |||
output.write('constexpr FileData kFileData[] = {\n') | |||
for path in path_list: | |||
output.write(' {"%s", "' % os.path.basename(path)) | |||
with open(path, 'rb') as stream: | |||
while (byte := stream.read(1)): | |||
output.write(r'\x' + byte.hex()) | |||
output.write('"},\n') | |||
output.write('};\n') | |||
## 編集後 | |||
output.write('constexpr FileData kFileData[] = {\n') | |||
for path in path_list: | |||
output.write(' {"%s", "' % os.path.basename(path)) | |||
with open(path, 'rb') as stream: | |||
byte = stream.read(1) | |||
while (byte): | |||
output.write(r'\x' + byte.hex()) | |||
byte = stream.read(1) | |||
output.write('"},\n') | |||
output.write('};\n') | |||
</syntaxhighlight> | |||
<br> | |||
==== Mozcのビルド ==== | ==== Mozcのビルド ==== | ||
Fcitx-Mozc、Mozcサーバ、Mozcツールをビルドおよびインストールする。<br> | Fcitx-Mozc、Mozcサーバ、Mozcツールをビルドおよびインストールする。<br> | ||
213行目: | 243行目: | ||
<u>必要であれば、src/scripts/install_fcitx_bazelファイルおよびsrc/scripts/install_server_bazelファイルの内容を参照する。</u><br> | <u>必要であれば、src/scripts/install_fcitx_bazelファイルおよびsrc/scripts/install_server_bazelファイルの内容を参照する。</u><br> | ||
<br> | <br> | ||
==== Mozcの設定ファイルの作成 ==== | ==== Mozcの設定ファイルの作成 ==== | ||
Mozcのアドオン設定ファイル、および、インプットメソッド設定ファイルを作成する。<br> | Mozcのアドオン設定ファイル、および、インプットメソッド設定ファイルを作成する。<br> |