已关闭,此问题需要details or clarity。它目前不接受回答。
**想改善这个问题吗?**通过editing this post添加详细信息并澄清问题。
昨天关门了。
Improve this question
我已经在每个源文件中包含了头文件,但是当我使用make
命令时,它找不到它们。包含的这些头文件很简单,位于同一个项目目录中。
In file included from tests/list_tests.c:1:
tests/minunit.h:6:10: fatal error: dbg.h: No such file or directory
6 | #include "dbg.h"
| ^~~~~~~
compilation terminated.
下面是所有的项目文件:code in github
我尝试将-I *PATH*
添加到gcc,但也找不到文件。我把PATH加到.bashrc然后用make
,它也找不到文件。
1条答案
按热度按时间6jygbczu1#
您使用
-Isrc
,但文件dbg.h
位于目录src/lcthdw
中。更改-I
标志的目录(或在src/lcthdw
目录中添加另一个-I
标志)。