Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on March 16, 2007, 09:54:38 pm

Title: The 16 March 2007 build is out.
Post by: killerbot on March 16, 2007, 09:54:38 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 16 March 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_Ubuntu6.xx.deb (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_suse100-102.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_fc4+5.i586.rpm (not yet)


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 16 March 2007 build is out.
Post by: killerbot on March 16, 2007, 09:57:27 pm
Tomorrow morning I am leaving for the USA for SD Expo (www.sdexpo.com). So nightly builds are not guaranteed this coming week. I should have wireless access in the hotel, but will I able able to svn update and then ftp upload ... that's the question.
I'll do my very best to provide the nightlies. But for sure, next week on Sunday I am back and for sure that day the nigthlies are too.

Cheers,
Lieven
Title: Re: The 16 March 2007 build is out.
Post by: wxLearner on March 16, 2007, 10:13:29 pm
Right clicking the workspace makes Code::Blocks crash.

Quote from: sdk/projectmanager.cpp
Code: line 486
if (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
Code
if (Projects && ftd && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects

Thank you for this great IDE :D
Title: Re: The 16 March 2007 build is out.
Post by: Grom on March 16, 2007, 10:31:24 pm
We can issue a rc10 when you will be on conference :lol:.
Title: Re: The 16 March 2007 build is out.
Post by: nenin on March 16, 2007, 10:39:43 pm
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.
Title: Re: The 16 March 2007 build is out.
Post by: Xaviou on March 16, 2007, 10:42:02 pm
Ubuntu 6.10 Amd64 .deb installer can be found here (http://www.esnips.com/web/CodeBlocks).
Title: Re: The 16 March 2007 build is out.
Post by: nenin on March 16, 2007, 10:42:29 pm
Right clicking the workspace makes Code::Blocks crash.
<***>
Thank you for this great IDE :D
Confirmed on Win2K SP4- c::b hung for few seconds and than crush.
Title: Re: The 16 March 2007 build is out.
Post by: wxLearner on March 16, 2007, 10:43:12 pm
Making console runner run again:

change the console runner name:
Quote from: plugins/compilergcc/compilergcc.cpp
Code: line 100
static const wxString strCONSOLE_RUNNER(platform::windows ? _T("cb_strCONSOLE_RUNNER.exe") : _T("cb_strCONSOLE_RUNNER"));
to
Code
static const wxString strCONSOLE_RUNNER(platform::windows ? _T("cb_console_runner.exe") : _T("cb_console_runner"));

change the if statement:
Quote from: plugins/compilergcc/compilergcc.cpp
Code: line 1670
if(platform::windows)
{
    // for non-win platforms, use m_ConsoleTerm to run the console app
    wxString term = Manager::Get()->GetConfigManager(_T("app"))->Read(_T("/console_terminal"), DEFAULT_CONSOLE_TERM);
    term.Replace(_T("$TITLE"), _T("'") + m_Project->GetTitle() + _T("'"));
    cmd << term << _T(" 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ");
}
to
Code
if(!platform::windows)
{
    // for non-win platforms, use m_ConsoleTerm to run the console app
    wxString term = Manager::Get()->GetConfigManager(_T("app"))->Read(_T("/console_terminal"), DEFAULT_CONSOLE_TERM);
    term.Replace(_T("$TITLE"), _T("'") + m_Project->GetTitle() + _T("'"));
    cmd << term << _T(" 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ");
}
Title: Re: The 16 March 2007 build is out.
Post by: RJP Computing on March 16, 2007, 11:01:31 pm
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.
I can confirm this bug as well on Windows XP.
Title: Re: The 16 March 2007 build is out.
Post by: Biplab on March 17, 2007, 05:09:20 am
Right clicking the workspace makes Code::Blocks crash.

Quote from: sdk/projectmanager.cpp
Code: line 486
if (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
Code
if (Projects && ftd && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects

It may crash if the workspace is empty. :)

Thanks for pointing it out. I've applied the fix.  :)
Title: Re: The 16 March 2007 build is out.
Post by: AmR EiSa on March 17, 2007, 06:31:49 am
anther bug if open code file C::B and the other setting is to save log and html file it will give msgbox about it's get the path.
how ide can't get the path and work with the file ?

AmR EiSa
Title: Re: The 16 March 2007 build is out.
Post by: Kaze Youkai on March 17, 2007, 06:22:35 pm
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.
I can confirm this bug as well on Windows XP.
Same problem for me, under WinXP as well.

-Kaze