Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on February 28, 2007, 08:08:27 pm

Title: The 28 february 2007 build is out.
Post by: killerbot on February 28, 2007, 08:08:27 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

To fix the menu alignment bug introduced in wx 2.6.3 [windows only bug] we have patched wx ourselves, and that results in the following alternative dll : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2AndCbPatch_version3.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 28 February 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070228_rev3652_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070228_rev3652_Ubuntu6.xx.deb
         http://prdownload.berlios.de/codeblocks/CB_20070228_rev3652_suse100-102.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070228_rev3652_fc4+5.i586.rpm (not yet)


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 28 february 2007 build is out.
Post by: Xaviou on February 28, 2007, 10:23:19 pm
Ubuntu 6.10 Amd64 .deb installer is here (http://www.esnips.com/web/CodeBlocks/).
Title: Re: The 28 february 2007 build is out.
Post by: jpaterso on March 01, 2007, 05:01:35 am
  • Batch-building improvements:
    - Added --clean command line option (patch #1888).
    - Don't load syntax highlighting files (not needed and time-consuming).
    - Batch build log uses the same log as in normal operation (errors/warnings colouring, progress display, etc)

Awesome! Thanks so much :)
Title: Re: The 28 february 2007 build is out.
Post by: joubertdj on March 01, 2007, 07:52:00 am
 :( Hi there, long time no see everyone...

I have been keeping my SVN up to date, but have not builded anything for about a month... (Yeah I know... but my patches don't get comments or implemented so why bother right? ...)

Now that I want to program again... building C::B gives me errors in file compileroptionsbase.cpp it says the following:

Quote
Compiling: sdk\compileoptionsbase.cpp
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: In constructor 'CompileOptionsBase::CompileOptionsBase()':
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:37: error: 'spAll' was not declared in this scope
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: At global scope:
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:49: error: no 'void CompileOptionsBase::AddPlatform(int)' member function declared in class 'CompileOptionsBase'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: In member function 'void CompileOptionsBase::AddPlatform(int)':
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:51: error: no match for 'operator&' in '((CompileOptionsBase*)this)->CompileOptionsBase::m_Platform & platform'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:53: error: no match for 'operator|=' in '((CompileOptionsBase*)this)->CompileOptionsBase::m_Platform |= platform'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: At global scope:
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:57: error: no 'void CompileOptionsBase::RemovePlatform(int)' member function declared in class 'CompileOptionsBase'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: In member function 'void CompileOptionsBase::RemovePlatform(int)':
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:59: error: no match for 'operator&' in '((CompileOptionsBase*)this)->CompileOptionsBase::m_Platform & platform'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:61: error: no match for 'operator&=' in '((CompileOptionsBase*)this)->CompileOptionsBase::m_Platform &= ~ platform'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: At global scope:
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:65: error: no 'void CompileOptionsBase::SetPlatforms(int)' member function declared in class 'CompileOptionsBase'
C:/temp/wxWidgetsBuild/include/wx/string.h: In member function 'void CompileOptionsBase::SetPlatforms(int)':
C:/temp/wxWidgetsBuild/include/wx/string.h:627: error: 'wxString& wxString::operator=(int)' is private
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:69: error: within this context
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: At global scope:
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:73: error: no 'int CompileOptionsBase::GetPlatforms() const' member function declared in class 'CompileOptionsBase'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: In member function 'int CompileOptionsBase::GetPlatforms() const':
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:75: error: invalid conversion from 'const wxChar*' to 'int'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: At global scope:
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:78: error: no 'bool CompileOptionsBase::SupportsCurrentPlatform() const' member function declared in class 'CompileOptionsBase'
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp: In member function 'bool CompileOptionsBase::SupportsCurrentPlatform() const':
C:\temp\CodeBlocksSVN\src\sdk\compileoptionsbase.cpp:81: error: 'spWindows' was not declared in this scope
Process terminated with status 1 (0 minutes, 3 seconds)
14 errors, 0 warnings

Any help will be appreciated...
Title: Re: The 28 february 2007 build is out.
Post by: joubertdj on March 01, 2007, 07:56:44 am
 :shock: No worries... fixed it... it was my GCC version... I used the version found at :http://oss.netfarm.it/mplayer-win32.php (http://oss.netfarm.it/mplayer-win32.php)

It is actually the first time it broke some things ...  :?

Compiled just fine with my 3.4.5

Title: Re: The 28 february 2007 build is out.
Post by: dronT78 on March 01, 2007, 08:14:36 am
RSS not working for me, Unable to post something before 30 seconds after login.
Title: Re: The 28 february 2007 build is out.
Post by: Alturin on March 01, 2007, 12:52:50 pm
Heya,

I've been seeing this with some frequency:
Quote
-------------- Build: Compiler in Code::Blocks ---------------
Compiling: plugins\compilergcc\compilerMSVC8.cpp
Compiling: plugins\compilergcc\compilergcc.cpp
Linking dynamic library: devel\share\CodeBlocks\plugins\compiler.dll
Info: resolving SquirrelVM::_VM       by linking to __imp___ZN10SquirrelVM3_VME (auto-import)

I wondered if that's normal? The 'Info:' line?
Title: Re: The 28 february 2007 build is out.
Post by: carlosreif on March 01, 2007, 04:23:32 pm
the rss feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml got stuck at 21/02/2007 :( :( :(
Title: Re: The 28 february 2007 build is out.
Post by: indigo0086 on March 01, 2007, 04:23:48 pm
How do I change the left side margin when I need to print code?
Title: Re: The 28 february 2007 build is out.
Post by: stahta01 on March 01, 2007, 04:40:35 pm
Heya,

I've been seeing this with some frequency:
Quote
-------------- Build: Compiler in Code::Blocks ---------------
Compiling: plugins\compilergcc\compilerMSVC8.cpp
Compiling: plugins\compilergcc\compilergcc.cpp
Linking dynamic library: devel\share\CodeBlocks\plugins\compiler.dll
Info: resolving SquirrelVM::_VM       by linking to __imp___ZN10SquirrelVM3_VME (auto-import)

I wondered if that's normal? The 'Info:' line?

It is normal, I see it most of the time.

Tim S
Title: Re: The 28 february 2007 build is out.
Post by: Jewe on March 02, 2007, 05:10:02 pm
Crash when pressing ctrl + Q.

How to reproduce:
1. start the 28 feb version
2. find text in files.. (about 40 files)
3. perform some editing and close/save files by using the x in the top.
4. forget that you are not using a old borland editor and press "ctrl + q f" for finding text.

result: crash

XP sp2
see rpt.

[attachment deleted by admin]