I configured my cedet almost the same with http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html.
Thanks alexott , most of the time it works well, but I found that it can not well parse the tm struct in /usr/include/time.h.
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int main(void){
struct tm times;
FILE file;
}
When using M-x semantic-ia-fast-jump
, the struct FILE is correct, but semantic finds the struct tm in wchar.h
, not in time.h
.
The problem seems to be there is a forward declaration in wchar.h
for the struct tm
.