Ubuntu下利用VScode编写ROS的CPP文件时,#include “rclcpp/rclcpp.hpp“报错,找不到头文件

1 打开 VScode的配置文件c_pp_properties

将鼠标放在报错的#include “-------------------” 处,出现灯泡则点击灯泡图标,或者出现快速修复,则点击快速修复

(1)出现灯泡提示
1
(2)出现快速修复提示
在这里插入图片描述

然后点击Edit"includePath"setting
在这里插入图片描述
然后点击c_cpp_properties.json
在这里插入图片描述

2 编辑c_cpp_properties.json文件并保存

添加并配置c_cpp_properties.json,在"includePath"中加入rclcpp/rclcpp.hpp的路径(或者你所报错的路径),注意,多个路径间用逗号分开。

{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**",
                "/opt/ros/foxy/include" //解决cpp文件中找不到"rclcpp/rclcpp.hpp'
            ],
            "defines": [],
            "compilerPath": "/usr/bin/gcc",
            "cStandard": "gnu17",
            "cppStandard": "gnu++14",
            "intelliSenseMode": "linux-gcc-x64"
        }
    ],
    "version": 4
}

配置结果

配置好的c_cpp_properties.json将自动保存在 .vscode 文件夹中。
在这里插入图片描述

感谢查阅,希望能对您的问题有所帮助。

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值