我试图使用GCC (linux)与makefile编译我的项目。

我得到了以下错误,似乎无法在这种情况下破译:

"No rule to make target 'vertex.cpp', needed by 'vertex.o'.  Stop."

这是生成文件:

a.out: vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o
    g++ vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o

main.o: main.cpp main.h
    g++ -c main.cpp

vertex.o: vertex.cpp vertex.h
    g++ -c vertex.cpp

edge.o: edge.cpp edge.h
    g++ -c num.cpp

vlist.o: vlist.cpp vlist.h
    g++ -c vlist.cpp

elist.o: elist.cpp elist.h
    g++ -c elist.cpp

vnode.o: vnode.cpp vnode.h
    g++ -c vnode.cpp

enode.o: enode.cpp enode.h
    g++ -c node.cpp

当前回答

在我的情况下,这是由于我板条箱文件像MakeFile而不是它应该是MakeFile。

其他回答

在我的例子中,我愚蠢地使用逗号作为分隔符。用你的例子来说,我是这样做的:

a.out: vertex.o, edge.o, elist.o, main.o, vlist.o, enode.o, vnode.o
    g++ vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o

把它换成

a.out: vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o
    g++ vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o

固定它。

当我忘记向我的git存储库添加新文件时,在Travis内部发生了这个错误。愚蠢的错误,但我可以看出这是相当普遍的。

打印此消息的更常见原因是您忘记包含源文件所在的目录。因此,gcc“认为”这个文件不存在。

您可以使用-I参数向gcc添加目录。

一个常见的错误可能是错别字在另一个文件的名称。

你的例子很简单,但有时可能会混淆 make本身的信息。让我们考虑一个例子。

我的文件夹内容是:

$ ls -1
another_file
index.md
makefile

而我的makefile是这样的

all: index.html

%.html: %.md wrong_path_to_another_file
    @echo $@ $<

尽管我有索引。Md它应该在哪里,没有错误的名字,从make的消息将是

make: *** No rule to make target `index.html', needed by `all'.  Stop.

说实话,这个信息令人困惑。它只是说,没有规则。实际上,这意味着规则是错误的,但由于通配符(模式)规则使无法确定究竟是什么导致了问题。

让我们稍微修改一下makefile,也就是说用显式规则替换模式:

index.html: index.md wrong_path_to_another_file

现在我们得到的信息是:

make: *** No rule to make target `wrong_path_to_another_file', needed by `index.html'.  Stop.

奇迹!可以得出以下结论:

make消息依赖于规则,并不总是指向问题的根源 makefile中可能存在与此消息所指定的不同的其他问题

现在我们提出了检查规则中其他依赖项的想法:

all: index.html

%.html: %.md another_file
    @echo $@ $<

只有这样,我们才能得到想要的结果:

$ make
index.html index.md

另一个奇怪问题及其解决方案的例子:

这样的:

target_link_libraries(
    ${PROJECT_NAME}
    ${Poco_LIBRARIES}
    ${Poco_Foundation_LIBRARY}
    ${Poco_Net_LIBRARY}
    ${Poco_Util_LIBRARY}
    )

` /usr/lib/libPocoFoundationd ` `没有规则。../hello_poco/bin/mac/HelloPoco需要。停止。

但如果我删除Poco_LIBRARIES它工作:

target_link_libraries(
    ${PROJECT_NAME}
    ${Poco_Foundation_LIBRARY}
    ${Poco_Net_LIBRARY}
    ${Poco_Util_LIBRARY}
    )

我在Mac上使用clang8,在Linux上使用clang3.9 这个问题只发生在Linux上,但在Mac上可以工作!

我忘了说:Poco_LIBRARIES是错误的——它不是由cmake/find_package设置的!