Author Topic: The 12.11 RC2 (23 November 2012 build 8598) is out.  (Read 277306 times)

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #60 on: December 01, 2012, 08:09:20 am »
What I'm asking for is to make "o" the default for SDCC object files because "rel" has been totally irrelevant for months.
Done in trunk. I guess nobody of us works with that compiler, so hopefully no other users complain that might still use the version that requires "rel"... we will see...
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

stefanos_

  • Guest
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #61 on: December 01, 2012, 10:00:24 am »
A very awkward thing just happened to me. I have compiled the latest wxWidgets trunk and tried to compile Code::Blocks 2.9.x workspace with it, and a compilation error appeared that had something to do with KWIC. The error is this

Quote
||=== wxWidgets - Contrib Items wx2.9.x, wxKWIC ===|
KWIC\include\wx\KWIC\AngularRegulator.h|28|error: invalid use of incomplete type 'class wxControl'|
C:\wxTrunk\include\wx\msw\bitmap.h|21|error: forward declaration of 'class wxControl'|
C:\SVN_Codes\codeblocks\src\plugins\contrib\wxContribItems\KWIC\src\wx\xrc\xh_kwxangularregulatorhandler.cpp||In member function 'virtual wxObject* kwxAngularRegulatorHandler::DoCreateResource()':|
C:\SVN_Codes\codeblocks\src\plugins\contrib\wxContribItems\KWIC\src\wx\xrc\xh_kwxangularregulatorhandler.cpp|69|error: no matching function for call to 'kwxAngularRegulatorHandler::SetupWindow(kwxAngularRegulator*&)'|
C:\SVN_Codes\codeblocks\src\plugins\contrib\wxContribItems\KWIC\src\wx\xrc\xh_kwxangularregulatorhandler.cpp|69|note: candidate is:|
C:\wxTrunk\include\wx\xrc\xmlreshandler.h|325|note: void wxXmlResourceHandler::SetupWindow(wxWindow*)|
C:\wxTrunk\include\wx\xrc\xmlreshandler.h|325|note:   no known conversion for argument 1 from 'kwxAngularRegulator*' to 'wxWindow*'|
C:\SVN_Codes\codeblocks\src\plugins\contrib\wxContribItems\KWIC\src\wx\xrc\xh_kwxangularregulatorhandler.cpp|71|error: cannot convert 'kwxAngularRegulator*' to 'wxObject*' in return|
C:\wxTrunk\include\wx\object.h||In instantiation of 'T* wxCheckCast(const void*, T*) [with T = kwxAngularRegulator]':|
C:\SVN_Codes\codeblocks\src\plugins\contrib\wxContribItems\KWIC\src\wx\xrc\xh_kwxangularregulatorhandler.cpp|47|required from here|
C:\wxTrunk\include\wx\object.h|161|error: invalid static_cast from type 'kwxAngularRegulator*' to type 'const wxObject*'|
||=== Build finished: 5 errors, 2 warnings (20 minutes, 7 seconds) ===|

BUT...that is not the purpose I am posting this. There seems to be an issue with tabs too.

See the attached picture to get what I mean...no tabs on top of editor. This is the first time that happens to me :/

NOTE: Do not let exchndl.c confused you about the error message; I just opened it to check the issue with tabs and make my point of not be able to see them on top.

UPDATE: I have compiled the latest C::B repository, svn-8643 (with TDM's GCC 4.7.1-2 and wxMSW-2.8.12 [32-bit on Windows XP]) and the issue remains the same.

[attachment deleted by admin]
« Last Edit: December 01, 2012, 11:41:28 am by stefanos_ »

Offline squalyl

  • Multiple posting newcomer
  • *
  • Posts: 14
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #62 on: December 01, 2012, 10:29:10 am »
to all, thank you!

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #63 on: December 01, 2012, 11:53:29 am »
UPDATE: I have compiled the latest C::B repository, svn-8643 (with TDM's GCC 4.7.1-2 and wxMSW-2.8.12 [32-bit on Windows XP]) and the issue remains the same.
View -> Hide editor tabs (Ctrl-H)
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #64 on: December 03, 2012, 04:31:34 am »
The Code::Blocks repository for Ubuntu linux is ppa: https://launchpad.net/~pasgui/+archive/ppa/
I checked into this ppa, and it appears that the most recent build does not contain the SmartIndent* plugins (lost during packaging??).
After discussion with pasgui, the plugins apparently do exist, /usr/lib/codeblocks/plugins, but for some reason have the file extension *.do_not_load.  You can manually rename them, or re-install Code::Blocks.  I found a purge necessary for the re-install to work:
Code
sudo apt-get purge codeblocks
sudo rm -rf /usr/lib/codeblocks/
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt-get update
sudo apt-get install codeblocks codeblocks-contrib

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #65 on: December 03, 2012, 06:19:06 am »
The Code::Blocks repository for Ubuntu linux is ppa: https://launchpad.net/~pasgui/+archive/ppa/
I checked into this ppa, and it appears that the most recent build does not contain the SmartIndent* plugins (lost during packaging??).
After discussion with pasgui, the plugins apparently do exist, /usr/lib/codeblocks/plugins, but for some reason have the file extension *.do_not_load.  You can manually rename them, or re-install Code::Blocks.  I found a purge necessary for the re-install to work:
Code
sudo apt-get purge codeblocks
sudo rm -rf /usr/lib/codeblocks/
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt-get update
sudo apt-get install codeblocks codeblocks-contrib
For other users:
if that happens to you, please try first to run sudo dpkg-reconfigure codeblocks-contrib .

stefanos_

  • Guest
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #66 on: December 03, 2012, 07:20:47 am »
UPDATE: I have compiled the latest C::B repository, svn-8643 (with TDM's GCC 4.7.1-2 and wxMSW-2.8.12 [32-bit on Windows XP]) and the issue remains the same.
View -> Hide editor tabs (Ctrl-H)

Thanks. Indeed that was the issue; I guess the "Search and Replace [ctrl-H]" in Notepad++ got me used to it :P

stefanos_

  • Guest
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #67 on: December 03, 2012, 07:24:01 am »
Guys, upon moving buttons from wxBoxSizer1 to wxBoxSizer2 it crashed twice up to now. I will try to reproduce it and write down the steps.

It happened under Windows XP, svn-8587, TDM's GCC 4.7.1-2 [32-bit], wxMSW-2.8.12

This issue remains as of svn-8643. You can clearly see from the attachment that upon moving any item from wxChoiceBook to wxBoxSizer2, it crashed Code::Blocks.

[attachment deleted by admin]

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #68 on: December 03, 2012, 09:33:32 am »
stefanos_: please start a new topic and provide a minimal sample for the wxsmith issue!
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

stefanos_

  • Guest
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #69 on: December 03, 2012, 04:08:34 pm »
stefanos_: please start a new topic and provide a minimal sample for the wxsmith issue!

Done. I hope I have done it as it should; you may find it here http://forums.codeblocks.org/index.php/topic,17189.0.html

Offline CBFanNUser

  • Single posting newcomer
  • *
  • Posts: 2
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #70 on: December 04, 2012, 01:52:39 pm »
I had an issue when I upgraded from a previous nightly build (pre-RC) to RC2. The issue was the projects cbp file. The project file had some compiler options in it that were used instead of what was intended. I could not find them bringing up the project properties and build options. I had to manually remove the lines from cbp file.

I am off to bed. I am sorry in advance if this is my error or mentioned before.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #71 on: December 04, 2012, 02:12:41 pm »
User CBFanNUser produced cannot compute error message.
Retry, Abort, Fail?_
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #72 on: December 05, 2012, 12:47:27 am »
Would any of the devs like to reveal what step(s) are left before RC2 becomes stable 12.11 (erm, 12.12)?

No pressure; just curious if there is somewhere that would be helpful for me to focus my efforts.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #73 on: December 05, 2012, 08:29:50 am »
Would any of the devs like to reveal what step(s) are left before RC2 becomes stable 12.11 (erm, 12.12)?
Nope
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline raynebc

  • Almost regular
  • **
  • Posts: 217
Re: The 12.11 RC2 (23 November 2012 build 8598) is out.
« Reply #74 on: December 05, 2012, 09:13:47 am »
Any news on the project parsing bug where casting a function's return value to (void) breaks the ability to find the function's declaration/implementation (previously mentioned at http://forums.codeblocks.org/index.php/topic,17070.msg117061.html#msg117061)?  This is one of the only two issues I can think of for Codeblocks.  The other being the performance issues of the auto-completion:  If I've been working in C::B long enough, it gets to the point where every time it tries to suggest an auto-completion, the IDE drops any keystrokes I enter for the next half second or so.  I notice no correlation with this behavior with any lack of free system memory or CPU cycles.  When it gets like this I usually just have to put up with it or re-open the IDE and my project to continue.