News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

The 06 august 2007 build (4352) is out.

Started by killerbot, August 06, 2007, 06:57:16 PM

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_wx284.7z

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

The 06 August 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20070806_rev4352_win32.7z
  - Linux :
   http://prdownload.berlios.de/codeblocks/CB_20070806_rev4352_Ubuntu6.10+7.04_wx2.8.4.tar.gz
   http://prdownload.berlios.de/codeblocks/CB_20070806_rev4352_Debian4.0_wx2.8.4.tar.gz
   http://prdownload.berlios.de/codeblocks/CB_20070806_rev4352_suse100-102.wx28.i586.rpm (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070806_rev4352_fc4+5.i586.rpm (not yet)


Resolved Fixed:


  • Added --safe-mode command-line option (all plugins are disabled on startup)
  • Fixed out-of-place builds with autotools (bug #11607)
  • Added cbProject::GetExtensionsNode() and cbProject::AddToExtensions(). The latter is exposed to scripts. Read the function docs on how to use it

Regressions/Confirmed/Annoying/Common bugs:


  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)


SR


mariocup

The message console appears always after editing the enviroment settings.

If the message console is closed (F2) and the settings are edited using the environment menu then after closing the settings dialog the message console will be opened.  :?

szczepan

#3

Quote from: killerbot on August 06, 2007, 06:57:16 PM
Fixed out-of-place builds with autotools (bug #11607)

Nope, not fixed. There are more instances of this bug. You fixed one, but another one stops the show:


make[4]: Entering directory `/home/rulatir/works/CB/build/src/plugins/todo/resources'
make[4]: *** No rule to make target `*.xrc', needed by `todo.zip'.  Stop.
make[4]: Leaving directory `/home/rulatir/works/CB/build/src/plugins/todo/resources'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/rulatir/works/CB/build/src/plugins/todo'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/rulatir/works/CB/build/src/plugins'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/rulatir/works/CB/build/src'
make: *** [all-recursive] Error 1


A thorough search over ALL zipfile rules seems necessary.

killerbot

Quote from: mariocup on August 07, 2007, 12:30:08 AM
The message console appears always after editing the enviroment settings.

If the message console is closed (F2) and the settings are edited using the environment menu then after closing the settings dialog the message console will be opened.  :?
maybe some debugging stuff is being written to the debug pane of the message console and put's focus to it ??

afb

The *.xrc breaks the Mac build, since I build once for PPC and once for X86.

Code (patch I used) Select

Index: src/plugins/todo/resources/Makefile.am
===================================================================
--- src/plugins/todo/resources/Makefile.am (revision 4351)
+++ src/plugins/todo/resources/Makefile.am (arbetskopia)
@@ -1,7 +1,7 @@
pkgdata_DATA = todo.zip
CLEANFILES = $(pkgdata_DATA)

-EXTRA_DIST = manifest.xml *.xrc
+EXTRA_DIST = manifest.xml $(srcdir)/*.xrc

todo.zip: $(EXTRA_DIST)
PWD=`pwd` cd $(srcdir) && zip $(PWD)/todo.zip manifest.xml *.xrc > /dev/null

manni

Hi.
I would like to report a problem. On Ubuntu 704, the program's window freezes before aligning its content, with the error message:

Quote(codeblocks:6552): Gtk-CRITICAL **: gtk_window_realize_icon: assertion `info->icon_pixmap == NULL' failed

If I start it in safe-mode (with plugins disabled), no error. Then I starts the plugins one by one, all plugins starts except "Compiler" (which would be great to have).

Thanks for working so much,

Manni

xaji

killerbot - could you make some cleanup to rss, because now my rss reader hangs on it for about minute.

killerbot

Quote from: xaji on August 07, 2007, 07:17:56 PM
killerbot - could you make some cleanup to rss, because now my rss reader hangs on it for about minute.
bad RSS reader  :shock:

stingx

Quote from: manni on August 07, 2007, 10:38:40 AM
(codeblocks:6552): Gtk-CRITICAL **: gtk_window_realize_icon: assertion `info->icon_pixmap == NULL' failed

I have this problem to.
This is due to some libwxgtk version issue. Currently ubuntu provides libwxgtk version 2.8.1, but codeblocks written for version 2.8.4.
Here are steps to solve this:
Open sources.list by typing:

sudo gedit /etc/apt/sources.list

(use vim or kwrite if you are KUbuntu user)
add this line to the end of file:
deb http://apt.tt-solutions.com/ubuntu/ feisty main

Run in console:

wget http://www.tt-solutions.com/vz/key.asc
sudo apt-key add key.asc
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install wx2.8-headers


Last command does install not only headers, but automatically all new wx2.8.4 packages

kaidokert

I have the same problem on Ubuntu Edgy, and after installing the wx packages from apt.tt-solutions.com/ubuntu/dists/edgy/main/binary-i386/, it still persists.


stingx

2 kaidokert.
Hm. Maybe somthing else need to be upgraded? Check versions of libwxgtk* libraries.

manni

Quote from: stingx on August 07, 2007, 11:43:02 PM

I have this problem to.
This is due to some libwxgtk version issue. Currently ubuntu provides libwxgtk version 2.8.1, but codeblocks written for version 2.8.4.


That was the problem. Thanks!