在Macbook上,我正在用json-c(https://github.com/json-c/json-c)做一些东西
gcc a.c
a.c:1:10: fatal error: 'json.h' file not found
#include "json.h"
^
1 error generated.`>
当我尝试编译它时,
它打印出错误,但我在包含文件中json.h
文件。
> cd /usr/local/include/json-c/
> ls
arraylist.h json_config.h json_tokener.h
bits.h json_inttypes.h json_util.h
debug.h json_object.h linkhash.h
json.h json_object_iterator.h printbuf.h
json_c_version.h json_object_private.h random_seed.h
/usr/include/json-c/json.h 肯定存在
编译器的包含路径中可能没有 json-c
子目录。
运气好的话,您可以将其添加到您的包含中:
#include "json-c/json.h"
这仅在该标头是独立的时才有效,即它不会引用 json-c/
中的任何进一步标头。
如果失败,您必须在调用它时告诉编译器:
$ gcc -I/usr/local/include/json-c/ a.c