Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on August 06, 2007, 06:57:16 pm

Title: The 06 august 2007 build (4352) is out.
Post by: killerbot on August 06, 2007, 06:57:16 pm
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 (http://forums.codeblocks.org/index.php/topic,3232.0.html).

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:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 06 august 2007 build (4352) is out.
Post by: SR on August 06, 2007, 08:42:56 pm
Slackware build updated to revision 4353
http://sr.mcdir.ru/blogs/index.php?blog=7&p=127&more=1
Title: Re: The 06 august 2007 build (4352) is out.
Post by: 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.  :?
Title: Re: The 06 august 2007 build (4352) is out.
Post by: szczepan on August 07, 2007, 12:47:25 am

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:

Code
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.
Title: Re: The 06 august 2007 build (4352) is out.
Post by: killerbot on August 07, 2007, 07:47:07 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 ??
Title: Re: The 06 august 2007 build (4352) is out.
Post by: afb on August 07, 2007, 09:23:57 am
The *.xrc breaks the Mac build, since I build once for PPC and once for X86.

Code: patch i used
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
Title: Re: The 06 august 2007 build (4352) is out.
Post by: manni on August 07, 2007, 10:38:40 am
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
Title: Re: The 06 august 2007 build (4352) is out.
Post by: 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.
Title: Re: The 06 august 2007 build (4352) is out.
Post by: killerbot on August 07, 2007, 10:04:49 pm
killerbot - could you make some cleanup to rss, because now my rss reader hangs on it for about minute.
bad RSS reader  :shock:
Title: Re: The 06 august 2007 build (4352) is out.
Post by: stingx on August 07, 2007, 11:43:02 pm
(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
Title: Re: The 06 august 2007 build (4352) is out.
Post by: kaidokert on August 08, 2007, 11:36:14 am
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.

Title: Re: The 06 august 2007 build (4352) is out.
Post by: stingx on August 08, 2007, 04:16:10 pm
2 kaidokert.
Hm. Maybe somthing else need to be upgraded? Check versions of libwxgtk* libraries.
Title: Re: The 06 august 2007 build (4352) is out.
Post by: manni on August 11, 2007, 10:43:43 am

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!