我关注this tutorial,我已经达到了我需要做的事情。编译图像以使其进入pi,但我收到以下错误:
mkdir build/
The syntax of the command is incorrect.
Makefile:57: recipe for target 'build/' failed
mingw32-make: *** [build/] Error 1
makefile在模板中可用here。 56 + 57行看起来像这样:
$(BUILD):
mkdir $@
谁能告诉我什么是错的以及如何解决?我是新手,并按照一步一步的指导:/谢谢!
答案 0 :(得分:1)
感谢igagis',我发现问题是:mkdir build/
是错误的命令,因为斜杠符号'/'。
在make文件中,变量target定义为:BUILD = build/
,因为它稍后用作路径。我将第57行固定如下:
$(BUILD):
mkdir build
现在代码按预期编译。