1)
Unicode build. Errors out with (something with the latest parser additions):
(http://www.geocities.com/grv575/3.JPG)
2)
Linux ansi build. Compiles OK, but then create a new wxwidgets project and hit compile. Errors with:
(http://www.geocities.com/grv575/1.JPG)
Compare with windows version:
(http://www.geocities.com/grv575/2.JPG)
i have this:
#ifdef __WXWINDOWS__
# include <wx/string.h>
# define string wxString
# define char wxChar
#else
#include <string>
#endif
Should I indent that include?
I tried the Unicode build yesterday and had the same problem. The project is missing one of the parser sources and header (searchtree?). Adding it to the project seemed to fix it. Hope it is ok to post this.
grunerite
Heh, the problem was that searchtree.cpp and searchtree.h were not included in the .cbp file...
So #1 can be fixed by updating the -UNI.cbp file
#2 still exists I believe (pch on linux for wxWidgets template).
OK a third bug - this one's in the debugger - setting breakpoints (the line# isn't being added - it just puts C:/1/123/main.cpp:).
[attachment deleted by admin]
Quote from: grv575 on December 27, 2005, 06:23:04 AM
OK a third bug - this one's in the debugger - setting breakpoints (the line# isn't being added - it just puts C:/1/123/main.cpp:).
http://sourceforge.net/tracker/index.php?func=detail&aid=1389953&group_id=126998&atid=707418
Quote from: grv575 on December 27, 2005, 05:54:06 AM
Heh, the problem was that searchtree.cpp and searchtree.h were not included in the .cbp file...
So #1 can be fixed by updating the -UNI.cbp file
#2 still exists I believe (pch on linux for wxWidgets template).
Somebody submit a patch for #1 please!