User forums > Nightly builds
The 25 march 2006 SPECIAL wx 2.6.3 build is out.
killerbot:
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
A link to the unicode windows wxWidgets 2.6.3 dll for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z
The 25 March 2006 build is out.
- Windows : http://download.berlios.de/codeblocks/CB_20060325_rev2258_win32_wx2.6.3.7z
The good news, I build both, the bad news : CB does not startup. Probably it is the wx dll, but I don't have time at this very moment to further investigate (sorry), but both are available here, so maybe you only need to build one of the 2. ;-)
The problem is that CB can't find something in the wx dll :
The procedure entry point _ZNK7wxRegEx7MatchesEPKwij could not be located in the dll wxmsw26u_gcc_cb.dll, so it seems some wxRegEx changes ?
If someone else found the solution in the meantime, please post it here (maybe a link to your build of the dll ??)
Cheers,
Lieven
killerbot:
changes I found to the wx/regex.h
// len may be the length of text (ignored by most system regex libs) ///<---------------- this line
//
// may only be called after successful call to Compile()
bool Matches(const wxChar *text, int flags = 0) const;
#if wxABI_VERSION >= 20603 <------------------------------------------ This part
bool Matches(const wxChar *text, int flags, size_t len) const;
bool Matches(const wxString& text, int flags = 0) const
{ return Matches(text.c_str(), flags, text.length()); }
#endif <------------------------------------------------------------------
TDragon:
I think you've probably inadvertently mixed DLL and EXE versions. A clean compile of wxWidgets 2.6.3 and of a fresh checkout of the C::B sources works fine, with the single notable exception of the toolbars not being sized correctly (as I noted previously with the wx 2.6.3 release candidate).
killerbot:
stupid me, just discovered that my wx dll was still the 2.6.2.
So it does work.
First thing I notice, the toolbars are way too big, and the debug toolbar is not visible (thought selected to be visible).
killerbot:
after switching back to normal CB and wx 2.6.2, my build toolbar was out of place, but I could drag it back into place, the debug toolbar however remains disappeared !!!
Navigation
[0] Message Index
[#] Next page
Go to full version