Author Topic: The 09 november 2006 build is out.  (Read 11044 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5494
The 09 november 2006 build is out.
« on: November 09, 2006, 10:52:59 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://prdownload.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://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 09 November 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20061109_rev3197_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20061109_rev3197_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20061109_rev3197_suse100+101.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20061109_rev3197_fc4+5.rpm (not yet)


Resolved Fixed:

  • wxPdfDocument updated to version 0.7.6
  • added new GTK wizard (Windows only)

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • menu items with icon not correctly aligned (since wx263)

« Last Edit: November 10, 2006, 07:54:56 am by killerbot »

Rock Hardbuns

  • Guest
Re: The 09 november 2006 build is out.
« Reply #1 on: November 10, 2006, 12:04:50 am »
Hey. New arivial here.

This is the first nightly I've tried so I don't know if this is a recent bug. When trying to build JUCE 1.39 (http://www.rawmaterialsoftware.com/juce/ ) with the MS VC  2003 Toolkit I get a linker error that indicates that the linker command string has been cut short.

Some earlier (smaller) versions build ok.

The current version (1.39) builds ok with all the other supported environments and I've looked at the project settings but find no problem.

The error looks like so:
:: === JUCE, Win32 Release ===
LINK:: fatal error LNK1181: cannot open input file '..\..\..\bin\intermediate_win32\static\src\juce_core\threads\juc'
:: === Build finished: 1 errors, 0 warnings ===

The path should read
"..\..\..\bin\intermediate_win32\static\src\juce_core\threads\juce_TimeSliceThread.obj"

So, is there some kind of string size limit at work on the linker command?

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: The 09 november 2006 build is out.
« Reply #2 on: November 10, 2006, 01:40:32 am »
I tried to build Juce and got error also.

LINK:: fatal error LNK1181: cannot open input file '..\..\..\bin\inter'

I have changed the project file and got it to compile, I think a path is too long and the link command crashes.

What is the length allowed on link command? The one this project produces is several thousand bytes long.

Do you want me to send the .cbp file to you? If so, created from VC6 or VC8 conversion?

Size of Link command that works: 30,091
Size of Link command that fails: 33,180       
code requires unsigned 16 bit int for values over 32767 my guess code in C::B or in windows is using signed 16 bit int.

Tim S
« Last Edit: November 10, 2006, 02:04:59 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Rock Hardbuns

  • Guest
Re: The 09 november 2006 build is out.
« Reply #3 on: November 10, 2006, 02:03:28 am »
Thank you for your offer, but given that Jules releases new versions pretty often I need a more permanent solution.

It's good to know that it actually is the size of the command. Maybe there's a fix in the pipeline?

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: The 09 november 2006 build is out.
« Reply #4 on: November 10, 2006, 02:07:32 am »
Thank you for your offer, but given that Jules releases new versions pretty often I need a more permanent solution.

It's good to know that it actually is the size of the command. Maybe there's a fix in the pipeline?

All I did was move the cbp file to same juce folder that holds juce.h file
and used a good text editor to change these items in the cbp file.
"..\..\..\" to ""
"..\platform_specific_code" to "build\win32\platform_specific_code"

Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Rock Hardbuns

  • Guest
Re: The 09 november 2006 build is out.
« Reply #5 on: November 10, 2006, 02:21:13 am »
Oh. well that wasn't too bad. I guess all those ../ adds up. :D

Offline cstudent

  • Almost regular
  • **
  • Posts: 159
    • Cstudent's Help Desk
Re: The 09 november 2006 build is out.
« Reply #6 on: November 10, 2006, 04:09:47 am »
Ubuntu 6.10 (Edgy) build here.

Offline szczepan

  • Multiple posting newcomer
  • *
  • Posts: 42
Re: The 09 november 2006 build is out.
« Reply #7 on: November 10, 2006, 07:19:23 am »
3199 local build crashes in FindDlg::FindDlg, ReplaceDlg::ReplaceDlg. See attached crash reports.

[attachment deleted by admin]

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5494
Re: The 09 november 2006 build is out.
« Reply #8 on: November 10, 2006, 08:02:09 am »
are your xrc's up to date in the zip file ??

try :
make clean-zipfiles
make clean-binfiles
make clean
make

Offline szczepan

  • Multiple posting newcomer
  • *
  • Posts: 42
Re: The 09 november 2006 build is out.
« Reply #9 on: November 10, 2006, 10:29:09 am »
are your xrc's up to date in the zip file ??

try :
make clean-zipfiles

Aaah, that did the trick, thanks.

nuke3d

  • Guest
Re: The 09 november 2006 build is out.
« Reply #10 on: November 10, 2006, 11:59:10 am »
Has something changed on the code completion plugin? The version of 2006/10/29 works very well while the current version seems to have problems seeing all available functions.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 09 november 2006 build is out.
« Reply #11 on: November 10, 2006, 12:30:25 pm »
Has something changed on the code completion plugin? The version of 2006/10/29 works very well while the current version seems to have problems seeing all available functions.

Nothing that would change its behaviour.
Read its log here.
Be patient!
This bug will be fixed soon...