gpt4 book ai didi

Emacs CEDET设置疑问

转载 作者:行者123 更新时间:2023-12-02 08:58:52 26 4
gpt4 key购买 nike

我今天成功安装了 cedet,并且大部分工作正常;感谢亚历克斯·奥特的Gentle Introduction to Cedet .

但是我遇到了问题

当我给出相对于我正在处理的当前文件的确切路径时,自动完成功能就可以正常工作。

#include "../../opensource/inc/lldp_port.h"
void test_func()
{
lldp_port port;
port.blah //here auto-completion worked fine
}

但是我不能一直指定完整路径(我们办公室有 eclipse,它为我们生成 makefile)

#include "lldp_port.h"
void test_func()
{
lldp_port port;
port. //here auto-completion does not work :(
}

我应该怎么做才能解决这个问题?

最佳答案

CEDET 项目设置函数的参数之一是 include-path。有一个例子here :

(ede-cpp-root-project "NAME" :file "FILENAME"
:include-path '( "/include" "../include" "/c/include" )
:system-include-path '( "/usr/include/c++/3.2.2/" )
:spp-table '( ("MOOSE" . "")
("CONST" . "const") )
:spp-files '( "include/config.h" )
)

关于Emacs CEDET设置疑问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2778029/

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