Author Topic: The 25 march 2006 SPECIAL wx 2.6.3 build is out.  (Read 22823 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« on: March 25, 2006, 09:41:44 pm »
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
« Last Edit: March 25, 2006, 11:09:22 pm by killerbot »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #1 on: March 25, 2006, 10:34:48 pm »
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 <------------------------------------------------------------------

Offline TDragon

  • Lives here!
  • ****
  • Posts: 943
    • TDM-GCC
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #2 on: March 25, 2006, 11:05:49 pm »
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).
https://jmeubank.github.io/tdm-gcc/ - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #3 on: March 25, 2006, 11:08:44 pm »
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).



Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #4 on: March 25, 2006, 11:19:29 pm »
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 !!!

Offline TDragon

  • Lives here!
  • ****
  • Posts: 943
    • TDM-GCC
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #5 on: March 25, 2006, 11:28:44 pm »
If you delete the layout section in default.conf, all toolbars will be visible again.
https://jmeubank.github.io/tdm-gcc/ - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

Offline Conan Kudo

  • Multiple posting newcomer
  • *
  • Posts: 111
    • Enano CMS Project
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #6 on: March 25, 2006, 11:44:39 pm »
unfortunately the wx bug did not get fixed, did anyone ever ask on the wx mailing list about it? and the toolbars are too long, as others have said. The find, replace, save, and stop debugging buttons in the toolbars are still colored when they are not supposed to be colored... I know that its falsified, but C::B seems faster than the wx2.6.2 version.... Nothing really improved, except maybe a psuedo-speed increase and scaled dialogs... But, it introduced problems into C::B as well, so I guess we will have to delay 1.0 some more  :x
« Last Edit: March 26, 2006, 12:19:54 am by Pharaoh Atem »

Deamon

  • Guest
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #7 on: March 26, 2006, 11:05:19 am »
Whitch of the nightly builds runs under WinME ?

Offline Zingam

  • Multiple posting newcomer
  • *
  • Posts: 74
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #8 on: March 26, 2006, 12:47:03 pm »
Wow, it's so buggy!!!

sethjackson

  • Guest
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #9 on: March 26, 2006, 04:11:15 pm »
Whitch of the nightly builds runs under WinME ?

Uhhh I think all of them should......  :?

sethjackson

  • Guest
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #10 on: March 26, 2006, 04:11:58 pm »
Wow, it's so buggy!!!

 :?  :P

What is so buggy? wx 2.6.3????

Offline Conan Kudo

  • Multiple posting newcomer
  • *
  • Posts: 111
    • Enano CMS Project
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #11 on: March 26, 2006, 04:46:36 pm »
no, C::B under wx 2.6.3 is buggy!

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #12 on: March 26, 2006, 04:57:31 pm »
Wow, it's so buggy!!!
no, C::B under wx 2.6.3 is buggy!

On behalf of the Code::Blocks Team, I would like to thank you both for your kind words and appreciation...
You might want to build C::B with wx2.4 and/or gtk1.2. It 'd be buggy there too. So you 'd have more nice things to say.

Now, for the rest of you people that insist on building C::B using the recommended versions of libraries, please don't judge us too harsh... we 're working on it...

Thank you again.
Be patient!
This bug will be fixed soon...

Deamon

  • Guest
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #13 on: March 26, 2006, 05:16:13 pm »
Whitch of the nightly builds runs under WinME ?

Uhhh I think all of them should......  :?

When i try to start it i get an wxWidgets fatal error that tells me that it uses Unicode and requires Windows NT/2000/XP

So which of the builds runs under WinME ?

And If i understand it right it runs independant from the old installation is this right ?

regards
Deamon

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 25 march 2006 SPECIAL wx 2.6.3 build is out.
« Reply #14 on: March 26, 2006, 06:39:22 pm »
nightly builds don't run on win9x, but somewhere this week I will create a new ansi build. And hopefully I have some spare time soon, to work on the libunicows.