make: c: 未找到命令
我正在尝试运行我的 make 文件,但是出现以下两个错误:
make: c: command not found
和
make: o: command not find
我正在尝试在 cygwin 内部执行此操作。我安装了 g++ 和 make,但是当我运行 make 文件时,我收到这些错误。
有什么想法吗?
生成文件:
all: MergeSort clean
MergeSort: main.o MergeSort.o
$g++ -o MergeSort main.o MergeSort.o
main.o: main.cpp MergeSort.h
$g++ -c main.cpp
MergeSort.o: MergeSort.cpp MergeSort.h
$g++ -c MergeSort.cpp
clean:
rm -rf *o
cleanall:
rm -rf *o *exe
I am attempting to run my make file however i am getting the following two errors:
make: c: command not found
and
make: o: command not found
I am attempting to do this inside of cygwin. I have g++ and make installed on it, however when I run the make file I receive these errors.
Any ideas?
The makefile:
all: MergeSort clean
MergeSort: main.o MergeSort.o
$g++ -o MergeSort main.o MergeSort.o
main.o: main.cpp MergeSort.h
$g++ -c main.cpp
MergeSort.o: MergeSort.cpp MergeSort.h
$g++ -c MergeSort.cpp
clean:
rm -rf *o
cleanall:
rm -rf *o *exe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要从
$g++
行中删除$
。它试图扩展一些不存在的变量,并吞掉命令中的“$g++ -
”。使用变量的语法是:
在本例中,
CXX
是为您定义的 C++ 编译器的路径。您可以通过将以下行添加到 makefile 来更改它:如果您试图避免回显 make 正在运行的命令,请使用
@
而不是$
。You need to remove the
$
from the$g++
lines. It's trying to expand some variable that doesn't exist, and is swallowing up the "$g++ -
" from your commands.The syntax for using a variable is:
In this case,
CXX
is the path to the C++ compiler, which is defined for you. You can change it by adding the following line to your makefile:If you are trying to avoid echoing back the command make is running, use
@
instead of$
.$g++ 未在该 makefile 中定义,因此命令变为
:
要么从 $g++ 中删除 $ 并使用 g++,要么在 makefile 中定义变量。
$g++ is not defined in that makefile, so the command becomes
and
Either drop the $ from $g++ and use g++, or define the variable in your makefile.