我正在尝试使用Mingw32 制作这个项目:
为此,我正在使用git bash执行以下命令:
git clone --recursive https://github.com/petrkutalek/png2pos.git
它创建一个名为png2pos的文件夹,其中包含项目源,以及一个名为Makefile的重要文件。
从那里,我进入新创建的文件夹,并尝试执行命令
make
预期的结果是源被构建到可执行文件中,但是我遇到了一些不允许我这样做的错误:
(...)/x86_64-pc-cygwin-bin/ld: unrecognized option '-z'
use the --help option for usage information
collect2: error: ld returned 1 exit status
Makefile:36: recipe for target 'png2pos' failed
mingw32-make: *** [png2pos] Error 1
我应该做些什么才能工作并创建我想要的可执行文件?