gpt4 book ai didi

c++ - pthreads 的 Makefile

转载 作者:太空狗 更新时间:2023-10-29 11:38:27 27 4
gpt4 key购买 nike

我正在尝试编译一个 pthread 示例,但出现以下错误:

make: *** No rule to make target `example.cpp', needed by `example.o'.  Stop.

这是我的生成文件:

CC = g++
CCFLAGS = -Wall

example: example.o
$(CC) $(CCFLAGS) -o example example.o -pthread

example.o: example.cpp
$(CC) $(CCFLAGS) -c example.cpp -pthread

clean:
- rm *.o
- rm example

我包含了 -pthread 标志,我不确定它还需要什么来编译。有人有主意吗?非常感谢。

最佳答案

如其所说,当前目录下没有example.cpp

在当前目录执行 ls 并在此处发布。

关于c++ - pthreads 的 Makefile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15875742/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com