我在我的程序中使用dbus,但是当我包含#include 时,我得到了错误:dbus-1.0/dbus/dbus.h:29:10: fatal error: 'dbus/dbus-arch-deps.h' file not found
在文件夹dbus中没有dbus-arch-deps.h文件。
我可以在lib64/dbus-1.0/include/dbus/dbus-arch-deps.h文件夹中看到这个文件
有谁能帮我编译一下吗?或者任何建议,因为我被困在这里了。
发布于 2020-02-10 14:43:30
您可以尝试添加
lib64/dbus-1.0/include/dbus 你的cpath变量。就像这样:
export CPATH=/lib64/dbus-1.0/include/dbus:$CPATH (这是使用绝对路径,否则更改路径的开头)之后用echo $CPATH检查它
然后尝试编译(例如使用gcc或make )
https://askubuntu.com/questions/1147010
复制相似问题