I updated to (Windows MinGW Version) Codelite 1.0.2304 on the machine I was using before. I had successfully built my test app with the previous version. After the update (A simple overwrite form the CodeliteXXX.exe) the settings were (almost) the same. But the $(PATH); was missing from the front of path variable. After fixing that, I get the following output:
----------Building project:[ wxIf - DebugUnicode ]----------
g++ -c "E:/Work/Commercial/wxInterface/wxif_app.cpp" -g -mthreads -DHAVE_W32API_H -D__WXMSW__ -D__WXDEBUG__ -D_UNICODE -IE:\bin\wxWidgets-2.8.9\lib\gcc_dll\mswud -IE:\bin\wxWidgets-2.8.9\include -DWXUSINGDLL -Wno-ctor-dtor-privacy -pipe -fmessage-length=0 -D__WX__ -o ./DebugUnicode/wxif_app.o -IE:/bin/wxWidgets-2.8.9/include -IE:/bin/wxWidgets-2.8.9/lib/gcc_dll
E:/Work/Commercial/wxInterface/wxif_app.cpp: In member function `virtual bool WxifApp::OnInit()':
E:/Work/Commercial/wxInterface/wxif_app.cpp:20: error: `wxXmlResource' has not been declared
E:/Work/Commercial/wxInterface/wxif_app.cpp:20: error: `Get' undeclared (first use this function)
E:/Work/Commercial/wxInterface/wxif_app.cpp:20: error: (Each undeclared identifier is reported only once for each function it appears in.)
mingw32-make.exe[1]: *** [DebugUnicode/wxif_app.o] Error 1
mingw32-make.exe: *** [All] Error 2
3 errors, 0 warnings, total time: 00:00:03 seconds
----------Build Ended----------
Any suggestions?
-- Dave
'makedir' is not recognized
-
- CodeLite Enthusiast
- Posts: 44
- Joined: Thu Oct 09, 2008 9:11 pm
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: 'makedir' is not recognized
this looks like simple include problem, do you have
in that file?
Eran
Code: Select all
#include <wx/xrc/xmlres.h>
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 44
- Joined: Thu Oct 09, 2008 9:11 pm
- Contact:
Re: 'makedir' is not recognized
Yup. That fixed it. Funny that it didn't need it before the update...
Thanks,
-- Dave
Thanks,
-- Dave