What’s new
Since golang updated their compiler to version 1.5 a couple of weeks ago, I am now able to use their new cross-compile toolchain to provide you some more binaries. By now there are two new, PPC64 and PPC64le. Both of them are, as the name says, for the PowerPC architecture with a 64bit bus system. The second one is directly compiled for the low-energy profiled CPUs. This build can be used on the Synology DS213+ for example.
Below you can see the full list of all supported platforms.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
build ├── arm │ ├── kd_proxy_arm_v5 │ ├── kd_proxy_arm_v6 │ └── kd_proxy_arm_v7 ├── linux │ ├── kd_proxy_32 │ └── kd_proxy_64 ├── mac │ ├── kd_proxy ├── ppc │ ├── kd_proxy_64 │ └── kd_proxy_64_le └── windows ├── kd_proxy_32.exe └── kd_proxy_64.exe |
Download
Shared Folder at mega.co.nz (mirror at dropbox)
Usage
Take the binary that fits to your environment and run it.
1 |
# ./kd_proxy -c config.json |