Author Topic: The 29 June 2006 build is out.  (Read 14640 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 29 June 2006 build is out.
« on: June 29, 2006, 07:29:12 pm »
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

A link to the unicode windows wxWidget dll for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.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

For support of ansi builds, a link to the ansi windows wxWidget dll (2.6.2) for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26_gcc_cb.7z

The 29 June 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060629_rev2640_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060629_rev2640_Ubuntu6.06.deb
         http://download.berlios.de/codeblocks/CB_20060629_rev2640_fc4+5.rpm


Resolved Fixed:

  • "close a tab by clicking it with the middle mouse button" tip added
  • typo
  • Old wxSmith:
    * Added better support for wxStdDialogButtonSizer (buttons are integral part of this widget)

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • there are several issues with Code Completion (is being redesigned : work in progress)
  • menu items with icon not correctly aligned (since wx263)

« Last Edit: June 30, 2006, 07:15:45 am by killerbot »

xLordRADx

  • Guest
Re: The 29 June 2006 build is out.
« Reply #1 on: June 30, 2006, 11:26:51 am »
I'm relatively new to C++ and am writing a text based RPG. Upon completing my character creation system and compiling my files (and installing the June 29 nightly build) I ran the program only to get an error. It read: "This application has failed to start because msvcr70.dll was not found. Re-installing the application may fix this problem."

Not sure if it's a CB problem or if the problem lies elsewhere in my PC.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 29 June 2006 build is out.
« Reply #2 on: June 30, 2006, 12:04:51 pm »
check if you can find the runtime dll : "msvcr70.dll" on your system.

Normally somewhere in C:\windows or C:\windows\system32

what version os Windows ?

Or maybe those dierctories are not in ouyr path ??

bryceman

  • Guest
Re: The 29 June 2006 build is out.
« Reply #3 on: July 01, 2006, 01:51:25 am »
I'm posting here the details of a bug (#7966) I'm experiencing. Here is a screencast on this nightly:

http://img429.imageshack.us/my.php?image=codeblocksbuildoptionsbug8yl.swf

walker

  • Guest
Re: The 29 June 2006 build is out.
« Reply #4 on: July 01, 2006, 05:22:01 am »
Hi, bryceman

just wonder, what tool did you use to capature the flash ?  thanks
« Last Edit: July 01, 2006, 05:31:11 am by walker »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 29 June 2006 build is out.
« Reply #5 on: July 01, 2006, 09:57:12 am »
I'm posting here the details of a bug (#7966) I'm experiencing. Here is a screencast on this nightly:

http://img429.imageshack.us/my.php?image=codeblocksbuildoptionsbug8yl.swf

excellent feedback, I will look into this.

Offline David Perfors

  • Developer
  • Lives here!
  • *****
  • Posts: 560
Re: The 29 June 2006 build is out.
« Reply #6 on: July 01, 2006, 10:30:11 am »
I'm posting here the details of a bug (#7966) I'm experiencing. Here is a screencast on this nightly:

http://img429.imageshack.us/my.php?image=codeblocksbuildoptionsbug8yl.swf
As far as I know, this is a normal behaviour... the default target was selected, so C::B shows the details of that target...
OS: winXP
Compiler: mingw
IDE: Code::Blocks SVN WX: 2.8.4 Wish list: faster code completion, easier debugging, refactoring

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 29 June 2006 build is out.
« Reply #7 on: July 01, 2006, 11:44:00 am »
indeed the settings being compared are from different things.

Settings on the project level (which each target inherits and can overrule), and the target itself does not repeat/show those project level settings again. Could be confusing.

Question : say I don't like  (for example) the defines of the project level : How can I override it ?
At the target level I can add extra defines, but how do I get rid of some project level ones ??

When I ask those settings of one of my existing projects, in either way, I end up at the project level, not the target level (and this should be the behaviour, since we are asking something from the project, it was the project we right clicked on).

But when I do this with the wxSmith project (I just created a new one), then I also end up at the 2 different levels. ????

Extra question : my wxSmith wizard talks about OK and cancel, yours about cancel and create ?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 29 June 2006 build is out.
« Reply #8 on: July 01, 2006, 03:00:02 pm »
Question : say I don't like  (for example) the defines of the project level : How can I override it ?
At the target level I can add extra defines, but how do I get rid of some project level ones ??
Well, in my opinion if defines differ in targets (e.g. -DDEBUG and -DNDEBUG) they should simply not be defined at project level. The logic is clear: Defines for a project means for all targets and not to differ / can be overridden between targets as default.

But anyway: Are you aware of the possibility to select a policy "use target options only" for all compiler / linker settings? This is the combobox just below the compiler / linker tab. Isn't this what you want?

With regards, Morten.
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

Offline byo

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 837
Re: The 29 June 2006 build is out.
« Reply #9 on: July 01, 2006, 04:58:21 pm »
Extra question : my wxSmith wizard talks about OK and cancel, yours about cancel and create ?

I switched to wxStdDialogButtonSizer and used default button labels. But only structure of dialog changed, nothing else.

xLordRADx

  • Guest
Re: The 29 June 2006 build is out.
« Reply #10 on: July 02, 2006, 08:34:05 am »
I'm using windows XP sp2. No, the "msvcr70.dll" file was not in my system directory. I tried re-installing .net in safemode like microsoft suggested, but that didn't work. I've seen sites where I can DL the file to manually install it into the directory and registry, but I'm not sure I can trust them. Any advice?

Offline lubos

  • Almost regular
  • **
  • Posts: 131
Re: The 29 June 2006 build is out.
« Reply #11 on: July 02, 2006, 10:05:46 am »
you must install that file to registry?? try only install it to sys32

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 29 June 2006 build is out.
« Reply #12 on: July 02, 2006, 10:06:01 am »
you can download it from my webspace (I hope's it will be sufficient, could be it will ask for other dll after this one ;-) )
Put the dll in system32 of windows dir.

http://users.pandora.be/lieven.de.cock/CodeBlocks/msvcr70.7z

xLordRADx

  • Guest
Re: The 29 June 2006 build is out.
« Reply #13 on: July 02, 2006, 08:55:42 pm »
I copied itno my system32 folder and rebooted. Now when I click the rebuild and run button it complies, runs and I get the wonderful Windows "This application has encountered an error and needs to close" message. Code Blocks says the "Process terminated with status -1073741510 (0 minutes, 8 seconds)."

A website suggested i run the cmd command and type "regsvr32 msvcr70.dll", enter. I did so and got the error message, "msvcr70.dll was loaded, but the DllRegisterServer entry point was not found. This file can not be registered."

P.S. I'm sorry if I'm cluttering your thread.