gpt4 book ai didi

c++ - 没有这样的文件或目录,但文件存在

转载 作者:行者123 更新时间:2023-12-02 11:10:42 25 4
gpt4 key购买 nike

我安装了pcl。 user/include/pcl-1.7下有一个pcl文件夹.我加 #include <pcl/ModelCoefficients.h>行到 cpp 文件。在终端上,我尝试编译这个文件。

g++ -c test.cpp 
fatal error: pcl/ModelCoefficients.h: No such file or directory
#include <pcl/ModelCoefficients.h>
^
compilation terminated.

我该如何解决这个错误?

最佳答案

使用-I告诉编译器搜索 user/include/plc-1.7头文件路径:

g++ -Iuser/include/plc-1.7 -c test.cpp 

更多信息:
  • https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html
  • https://gcc.gnu.org/onlinedocs/cpp/System-Headers.html
  • 关于c++ - 没有这样的文件或目录,但文件存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32427122/

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