News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

The 14 May 2011 build (7143) is out.

Started by killerbot, May 14, 2011, 10:36:29 AM

Previous topic - Next topic

killerbot

Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

Before you use a nightly make sure you understand how it works.

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx2812_gcc452-TDM.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc452-TDM.7z

The 14 May 2011 build is out.
 - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20110514_rev7143_win32.7z
 - Linux :
   none

Resolved Fixed:


  • CC: fix a variable type error
  • SDK: Initialize a static member variable
  • CC: made the current active parameter to be highlighted correctly in the calltip; this feature was broken by the pretty printer patch commited earlier
  • Added wxSmith option to allow duplicate IDs (useful to assign the same ID to a menuitem and a toolitem, for example)
  • quote xdg-open argument in default mime handler
  • CC: fix a crash candidate in case C::B is closed very quickly after start-up
  • inform the user if an invalid virtual target is tried to be setup (failed silently before, making a checkbox value magically re-appear)
  • Fixed a auto indent bug
  • CC: Improve the performance of functions DoParse
  • CC: fixed bug #15112
  • added option to freely define import and def file name for libraries, including (and by default) using macros (based on patch #2937)
  • linux build-fix; synchronizing some contrib-plugins projectfiles on linux
  • ToolsPlus-plugin: fix a possible crash (hard to track down), see http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.14 for an explanation
  • expand macros in include dirs in cppcheck plugin
  • CC: re-worked options dialog, fixed tiny crash candidate
  • editormanager: fixed crash candidate
  • fixed target option "auto-generate prefix" not working for dynamic libraries on Linux (breaking build); ToDo: what about Mac?!
  • todo list: fixed bug, that no "allowed types" are selected initially
  • todo list: issue a warning, if no types are selected when refreshing the view

Regressions/Confirmed/Annoying/Common bugs:




swjinjin

Thank you for your work.

But, i have found a bug which occurs on notebook.
If i change the monitor mode of notebook (single -> dual monitor or dula -> single),
Codeblocks's all dialogboxes is opened in minium size.
This bug is not resolved if not restarting Codeblocks.

Sangwoo.

MortenMacFly

Quote from: swjinjin on May 14, 2011, 03:27:56 PM
This bug is not resolved if not restarting Codeblocks.
Dammed! You found a bug I was experiencing for a long time myself, but I never had a way to reproduce. Now that I know I have no access to a PC with two monitors anymore. :-(

Can you do me a favor and post this to the bug tracker including the full description how to reproduce and send me a note?

Personal note @Jens (in addition): I believe this was related to the introduction of wxScrolledDialog - before that I can hardly remember having such issues... but may also not have had a PC with two monitors. :?
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

Jenna

Quote from: MortenMacFly on May 14, 2011, 05:35:51 PM
Personal note @Jens (in addition): I believe this was related to the introduction of wxScrolledDialog - before that I can hardly remember having such issues... but may also not have had a PC with two monitors. :?
I will see if I can reproduce it.


patheticcockroach

Quote from: MortenMacFly on May 14, 2011, 05:35:51 PM
Quote from: swjinjin on May 14, 2011, 03:27:56 PM
This bug is not resolved if not restarting Codeblocks.
Dammed! You found a bug I was experiencing for a long time myself, but I never had a way to reproduce. Now that I know I have no access to a PC with two monitors anymore. :-(
Brilliant, I experienced it too once, but never get where it came from.

adfm


oBFusCATed

The debugger branch in not compilable on windows at the moment.
And also, it is a little bit unstable  :lol:
(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!]

ultimA

Quote from: oBFusCATed on May 16, 2011, 04:44:33 PM
The debugger branch in not compilable on windows at the moment.
And also, it is a little bit unstable  :lol:
...and on Linux it doesn't even build.

g++ -DHAVE_CONFIG_H -I. -I../../src/include -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -I../../src/sdk/wxscintilla/include -I../../src/include -I../../src/include/scripting/include -I../../src/include/scripting/sqplus -I../../src/include/mozilla_chardet -DENABLE_BINRELOC -DAPP_PREFIX="\"/usr\"" -Ulinux -Uunix  -O2 -ffast-math -DCB_AUTOCONF -march=x86-64 -mtune=generic -O2 -pipe -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -MT watchesdlg.o -MD -MP -MF .deps/watchesdlg.Tpo -c -o watchesdlg.o watchesdlg.cpp
watchesdlg.cpp:23:34: fatal error: wx/propgrid/propgrid.h: No such file or directory
compilation terminated.


oBFusCATed

Hm, have you tried:


make clean or make distclean
./bootstrap
./configure ....options...
make -jX


I've fixed a minor error in the build system, so you have to update again.
(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!]

MortenMacFly

Quote from: oBFusCATed on May 16, 2011, 04:44:33 PM
The debugger branch in not compilable on windows at the moment.
BTW: Because of that I cannot test it at all under Windows. Drop me a note once it is OK on that platform again... ;-)
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

killerbot

about the debugger branch : I have been using the debugger branch (on linux) for some months now. However I didn't svn up for a long time because it became somewhat instable as mentiond by our debugger guru. Any time frame when it might be save again to svn up on that branch (in order to sync with all the goodies that were merged from trunk, aswel as the debugger branch goodies) ?


oBFusCATed

Quote from: MortenMacFly on May 17, 2011, 11:17:28 AM
BTW: Because of that I cannot test it at all under Windows. Drop me a note once it is OK on that platform again... ;-)
I'm working on the tooltips at the moment and when I finish them, I'll concentrate on the windows problems.

killerbot: Can you try the latest revision? I'm using it myself and I don't see new problems and regressions. The branch is a bit unstable because I change things and there is a chance to build an intermediate version, but other than that it should work (report problems if it doesn't).
(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!]

oBFusCATed

The build should be fixed on windows too. Morten, Killerbot can you try it?

p.s. Any help with handling keyboard messages in wxPopupWindow is highly desired and welcome :(
(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!]

Krisando

CB b7143 in Window freezes when opening any Codeblocks project file, anyone else experiencing this? Seems to be getting into an infinite loop of some sort, b7048 works fine though.