-
Notifications
You must be signed in to change notification settings - Fork 28
How to build for Windows (Japanese)
WO edited this page Jun 4, 2018
·
8 revisions
Ubuntu もしくは Windows Subsystem for Linux(WSL) で以下の作業を行います。
事前にアップデートしておくほうが望ましいです。
sudo apt-get update
sudo apt-get upgrade
ビルドする環境をインストールします。
- sudo update-alternatives実行時の選択肢ではposixを選択してください。
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python python-zmq zlib1g-dev wget bsdmainutils automake curl
sudo apt-get install mingw-w64
git clone https://github.com/KotoDevelopers/koto.git
cd koto
git checkout develop
patch -p1 < zcutil/win-build.diff
sudo update-alternatives --config x86_64-w64-mingw32-gcc
sudo update-alternatives --config x86_64-w64-mingw32-g++
ビルドを開始します.かなり時間がかかりますので気長に待ちます。
./zcutil/build-win.sh
strip src/kotod.exe src/koto-cli.exe src/koto-tx.exe
srcディレクトリにkotod.exe, koto-cli.exe, koto-tx.exeが存在すればビルドは成功です。