raspberrypi上的Netbeans远程部署返回“ make:Makefile:没有这样的文件或目录”

问题描述 投票:0回答:1

我试图通过远程部署代码在raspberrypi上运行经典的Blink程序。这是我得到的输出。

cd '/home/pi/Documents/netbeansProject/'
/usr/bin/make -f Makefile CONF=Debug
make: Makefile: No such file or directory
make: *** No rule to make target 'Makefile'.  Stop.

All the files of the project

  • 我在搜索完此后所知道的所有东西是make,但是找不到名为'Makefile'的make文件,但我已经在项目中'重要文件'部分中找到了它。仍然无法找到它。.
  • 现在我尝试在netbeans tutorial之后运行一个示例项目,它也会返回类似的输出。
cd '/home/pi/Documents/netbeansProject/Welcome_1/'
/usr/bin/make -f Makefile CONF=Debug
make: Makefile: No such file or directory
make: *** No rule to make target 'Makefile'.  Stop.
  • 我从本教程中注意到的区别是,我在输出中没有得到“将项目文件复制到...”。可能是Makefile从未到达rasberrypi,这就是为什么它找不到它的原因?
  • 我尝试打开remote terminal tab,即使我正在打开远程终端,Netbeans也给出了错误'Local terminal is not supported on this system'。尽管我可以通过本地终端轻松进入raspberrypi。 (即使Netbeans提供了终端,也是如此)
makefile remote-debugging netbeans-8
1个回答
0
投票

所以我做到了,问题解决了

Project properties > Build > Build host > Host configuration check > Selected the host > Properties > Access project files via

然后选择SFTP(之前是系统级文件共享)。

我还不知道两者之间的区别,但这对我有用。正如我之前提到的,文件没有通过SFTP复制到远程主机。

© www.soinside.com 2019 - 2024. All rights reserved.