我用http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html配置了我的 cedet 几乎相同。
感谢 alexott ,大多数时候它运行良好,但我发现它无法很好地解析 /usr/include/time.h 中的 tm 结构。
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int main(void){
struct tm times;
FILE file;
}
使用M-x semantic-ia-fast-jump
时,结构 FILE 是正确的,但语义在 中找到结构 tm wchar.h
,而不是在 中time.h
。问题似乎wchar.h
是struct tm
.