Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Getting rid of non-existant errors, question about recognition of C++ standard things.

> I have now looked through the file, Eclipse CDT has correctly picked up  
> a directory that contains a directory with wx.h in it, (it has found  
> wx/wx.h) 

Notice the entries are per file. Does the specific source file for which
you say the #include <wx/wx.h> is unresolved, have an entry in which
wx/wx.h can be found?

> and the macros defined are only those that have come from  
> compiler invocations (it has not defined the _ macro found in wx.h,  
> just things like __WXGTK__) 

That's fine. _ is supposed to be defined by one of the wx headers,
so it doesn't need to appear in the language.settings.xml file.
If it is not being resolved, then either CDT is not finding the header
that defines it at all, or its definition is guarded by a macro which
should be defined but CDT thinks it isn't (or vice versa).

Regards,
Nate 		 	   		  

Back to the top