2020-09-26 22:13:26 +02:00
|
|
|
<div style="text-align: center;"><iframe src="gad.html" frameborder="0" scrolling="no" style="border: 1px solid gray; padding: 0; overflow:hidden; scrolling: no; top:0; left: 0; width: 100%;" onload="this.style.height=(this.contentWindow.document.body.scrollHeight+5)+'px';"></iframe></div>
|
|
|
|
|
## How to compile
|
|
|
|
|
|
|
|
|
|
The **KiTTY** binary is built with [MinGW32](http://mingw.org/).
|
|
|
|
|
|
2022-06-24 19:39:14 +02:00
|
|
|
The best way to compile **KiTTY** is to use our cross-compile docker image:
|
2020-09-26 22:13:26 +02:00
|
|
|
|
|
|
|
|
**For 32 bits compilation**
|
|
|
|
|
```bash
|
2022-11-15 22:54:04 +01:00
|
|
|
mkdir -p builds 2> /dev/null || rm -f builds/*.exe
|
2023-01-22 17:44:13 +01:00
|
|
|
docker run --rm -it -v $(pwd)/builds:/builds -e USR_UID=$(id -u) -e USR_GID=$(id -g) cyd01/cross-gcc "git clone https://github.com/cyd01/KiTTY.git ; cd KiTTY/0.76b_My_PuTTY/windows ; make -f MAKEFILE.MINGW cross ; cd /builds ; ls -l"
|
2020-09-26 22:13:26 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**For 64 bits compilation**
|
|
|
|
|
```bash
|
2022-11-15 22:54:04 +01:00
|
|
|
mkdir -p builds 2> /dev/null || rm -f builds/*.exe
|
2023-01-22 17:44:13 +01:00
|
|
|
docker run --rm -it -v $(pwd)/builds:/builds -e USR_UID=$(id -u) -e USR_GID=$(id -g) cyd01/cross-gcc "git clone https://github.com/cyd01/KiTTY.git ; cd KiTTY/0.76b_My_PuTTY/windows ; make -f MAKEFILE.MINGW cross64 ; cd /builds ; ls -l"
|
2020-09-26 22:13:26 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The **kitty.exe** and other stuff will be available into **/builds** directory.
|