Recently I was switching my programming environment from CentOS to Windows. I am a fan of Emacs, so I want to use Emacs to program on Windows too. Everything goes on smoothly but when I use emacs semantics to parse system includes, here comes the problem.
It seems that emacs semantic will choose which file to parse and which not. I specify the MS Visual Studio include directories for emacs to parse, but it won't. I also tried MinGW headers, but emacs only parse a few of the files. My init.el file is like this
(defun my-semantic-hook()
(semantic-add-system-include "C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\include")
)
I don't know if I should use / or \ in emacs on windows, but it seems both will work. And if I use semantic-c-describe-environment
the output is
This file’s project include is handled by:
EDE : #<ede-cpp-root-target ede-cpp-root-target>
with the system path:
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include
D:/WorkSpace/
This file’s system include path is:
/usr/include
c:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/include/
You can see that I also tried EDE to specify the system include path, but it doesn't work too. However, the other features of semantic works pretty well. If I write #include "lib1.h"
or #include "headers/lib1.h"
or using EDE #include <myproj/headers/lib1.h>
, they all work well. However, when it comes to the VS include files or MinGW include files things just going wrong.
I suppose if semantic checks the file first, and it found something wrong then it just skip the file? Then how could I fix the problem?
Now the problem has new progress. I've tried use semantic on my old project using SDL2 library. After I wrote the project configuration for EDE and opened one of the source file, something happened. Semantic parse some system include files like stdio.h. Then I can jump to it through semantic.
Then I tried another file using iostream. However semantic still doesn't parse it. But I can use C-c , u
command to jump to the file and I manually call semantic to parse it. Then I went back to my original file using iostream, the company backend using semantic can work pretty well now.
So now I can make sure that the problem is that semantic doesn't parse file itself. Maybe it's because it only parses files with .h or .c at the end of the file name? But on linux it works well with files like iostream, why on windows it won't? How to fix it?
add system includes example:
add project roots:
There are an implementation in More Reasonable Emacs for how to find the correct system include paths on Windows, Darwin, and Linux in
system-cc-include
of cc.elCall
system-cc-include
function should returns a list of system include paths: