make: *** No rule to make target `PLCXProcess.o', needed by `PLCXOperator'. Stop.
时间: 2023-07-01 07:25:04 浏览: 75
Hyperledger Fabric make: *** No rule to make target问题(一)
5星 · 资源好评率100%
这个错误提示是由于make命令找不到PLCXProcess.o文件,而PLCXOperator文件需要依赖于PLCXProcess.o文件。这可能是由于你的代码中缺少了PLCXProcess.cpp文件,或者PLCXProcess.cpp文件没有被正确地添加到Makefile文件中。
你需要确保PLCXProcess.cpp文件存在,并且在Makefile文件中被正确地添加。在Makefile文件中,应该有一个类似如下的代码行:
```
PLCXProcess.o: PLCXProcess.cpp PLCXProcess.h
g++ -c PLCXProcess.cpp -o PLCXProcess.o
```
在这个例子中,PLCXProcess.cpp和PLCXProcess.h文件被添加到了PLCXProcess.o的依赖项中,并且使用g++编译器将PLCXProcess.cpp编译为PLCXProcess.o文件。你需要确认你的Makefile文件中是否有类似的代码行,并且确保文件名和路径是否正确。
阅读全文