我试图使用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

当前回答

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

你的例子很简单,但有时可能会混淆 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

其他回答

打印此消息的更常见原因是您忘记包含源文件所在的目录。因此,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

在我的例子中,错误消息引用了一个旧的文件名,这个文件名已经不存在了,因为它被重命名了。原来过时的信息不是来自Makefile,而是来自.deps目录下的文件。

我在将文件从一台机器复制到另一台机器时遇到了这个错误。在这个过程中,我假设时间戳处于不一致的状态,在并行运行多个作业时混淆了“make”(类似于此错误报告)。

使用make -j 1的顺序构建没有受到影响,但我花了一段时间才意识到,因为我使用了别名(make -j 8)。

为了清理状态,我删除了所有.deps文件并重新生成Makefile。下面是我使用的命令:

find | grep '.deps' | xargs rm
find | grep '.deps' | xargs rmdir
autoreconf --install # (optional, but my project is using autotools) 
./configure

从那以后,建筑又开始工作了。

在我的例子中,这是由于我调用Makefile: Makefile(全部大写)

在我的情况下,路径没有设置在VPATH,添加后的错误消失了。