今日、cedet を正常にインストールし、ほとんどが機能するようになりました。Alex Ott の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 :(
}
これを解決するにはどうすればよいですか?