我正在尝试按照建议使用 CMake 从源代码构建(http://synergy-foss.org/pm/projects/synergy/wiki/Compiling)
[d3p299@we16410 synergy-1.3.7-Source]$ ./hm.py build
Running setup...
Error: Generator not specified, use -g arg (use `hm genlist` for a list of generators).
所以我选择了发电机:
[d3p299@we16410 synergy-1.3.7-Source]$ ./hm.sh genlist
1: Unix Makefiles
2: Eclipse CDT4 - Unix Makefiles
好的,我需要索引 1,所以我尝试:
[d3p299@we16410 synergy-1.3.7-Source]$ ./hm.py build -g 1
Error: option -g not recognized
也许命令的语法是错误的?
[d3p299@we16410 synergy-1.3.7-Source]$ ./hm.py usage
Usage: ./hm.py <command> [-g <index>|-v|--no-prompts|<command-options>]
Example: ./hm.py build -g 3
我按照帮助命令中的建议正确运行该命令。是什么赋予了?
答案1
对我来说就像 Synergy 1.3.7 的魅力一样
看起来您使用了错误的构建指令(适用于 1.4.x)。
确保您的系统上安装了 cmake。
始终检查自述文件tar.gz 文件内的文件..
旧版本的 Synergy 使用标准 UNIX 安装过程。
运行这些命令:
./configure
make
make install
你能尝试一下吗?它应该工作得很好。
如果您尝试从源代码安装 1.4.2 Beta,那么您将需要“hm”脚本和那些新的构建指令——是的,它似乎在 1.4.2 Beta 中被破坏了——看起来像他们的 Beta 版本中的一个错误......