Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on December 15, 2006, 07:09:27 pm

Title: The 15 december 2006 build is out.
Post by: killerbot on December 15, 2006, 07:09: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

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 15 December 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20061215_rev3385_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20061215_rev3385_Ubuntu6.06.deb (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20061215_rev3385_suse100+101.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20061215_rev3385_fc4+5.rpm (not yet)


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 15 december 2006 build is out.
Post by: killerbot on December 15, 2006, 07:19:56 pm
there seems to be a side effect in this build, at each start up CB show the compiler list and which ones are detected.

[PERSONAL NOTE] : would be nice if that compiler selection list dialog would be resizable so i t can be enlarged that everything is nicely visible.

[EDIT] : on Suse 10.2 it is also ok.
Title: Re: The 15 december 2006 build is out.
Post by: pasgui on December 15, 2006, 07:28:37 pm
To compile svn3385 on linux ubuntu edgy, I modify the following line:

gdb_commands.h (line 1148):
#ifdef __WXMSW__
                    if(m_disassemblyFlavor == _T("set disassembly-flavor or32"))
                    {
                        reDisassemblyInitFuncOR32.GetMatch(output, 1).ToLong(&active, 16);
                    }
                    else
#endif

gdb_driver.cpp (line 755):
#ifdef __WXMSW__
            if(flavour == _T("set disassembly-flavor or32"))
            {
                HandleMainBreakPoint(reBreak_or32, lines);
            }
            else
#endif

gdb_driver.h (line 76):
        void GDB_driver::HandleMainBreakPoint(const wxRegEx& reBreak, wxString line);

Best regards,

pasgui
Title: Re: The 15 december 2006 build is out.
Post by: pasgui on December 15, 2006, 07:36:32 pm
there seems to be a side effect in this build, at each start up CB show the compiler list and which ones are detected.

[PERSONAL NOTE] : would be nice if that compiler selection list dialog would be resizable so i t can be enlarged that everything is nicely visible.

This side effect is not present on edgy.
Title: Re: The 15 december 2006 build is out.
Post by: PsYhLo on December 15, 2006, 08:10:04 pm
how to compile the latest svn on my linux box
i get this messages
Code
:: === Code::Blocks - Unix, Debugger ===
plugins/debuggergdb/gdb_commands.h:1148: error: `m_disassemblyFlavor' was not declared in this scope
plugins/debuggergdb/gdb_commands.h:1150: error: `reDisassemblyInitFuncOR32' was not declared in this scope
plugins/debuggergdb/gdb_commands.h:1150: warning: unused variable 'reDisassemblyInitFuncOR32'
plugins/debuggergdb/gdb_commands.h:1148: warning: unused variable 'm_disassemblyFlavor'
plugins/debuggergdb/gdb_driver.cpp:757: error: `reBreak_or32' was not declared in this scope
plugins/debuggergdb/gdb_driver.cpp:757: warning: unused variable 'reBreak_or32'
:: === Build finished: 3 errors, 3 warnings ===
Title: Re: The 15 december 2006 build is out.
Post by: killerbot on December 15, 2006, 08:12:58 pm
how to compile the latest svn on my linux box
i get this messages
Code
:: === Code::Blocks - Unix, Debugger ===
plugins/debuggergdb/gdb_commands.h:1148: error: `m_disassemblyFlavor' was not declared in this scope
plugins/debuggergdb/gdb_commands.h:1150: error: `reDisassemblyInitFuncOR32' was not declared in this scope
plugins/debuggergdb/gdb_commands.h:1150: warning: unused variable 'reDisassemblyInitFuncOR32'
plugins/debuggergdb/gdb_commands.h:1148: warning: unused variable 'm_disassemblyFlavor'
plugins/debuggergdb/gdb_driver.cpp:757: error: `reBreak_or32' was not declared in this scope
plugins/debuggergdb/gdb_driver.cpp:757: warning: unused variable 'reBreak_or32'
:: === Build finished: 3 errors, 3 warnings ===


use rev 3387
Title: Re: The 15 december 2006 build is out.
Post by: PsYhLo on December 15, 2006, 09:29:15 pm
Quote
Respect OS theme's window background colour in the compiler's build log
this didn't work for me :(
the same thing like in this thread http://forums.codeblocks.org/index.php?topic=4696.0
Title: Re: The 15 december 2006 build is out.
Post by: mandrav on December 15, 2006, 09:40:25 pm
Quote
Respect OS theme's window background colour in the compiler's build log
this didn't work for me :(
the same thing like in this thread http://forums.codeblocks.org/index.php?topic=4696.0

I just noticed you were talking about linux. Yes, I just checked it in linux and you 're right: it doesn't fix it.
So wait until (probably) tomorrow.
Title: Re: The 15 december 2006 build is out.
Post by: slymr on December 16, 2006, 06:46:16 am
I do not know if this is the proper place to post but...

the code completion has a bug in it. When you have a space ( " " ) in your file, the code completion categorizes it as it as a separate suggestopns.

For example,

if the file is called "Test Hi.h"
you write #include "
then it gives the suggestions "Test" then "Hi.h"
Title: Re: The 15 december 2006 build is out.
Post by: dk on December 16, 2006, 11:24:56 am
When you save any file, all trailing spasec at the and of each line are removed.

May be, it is the same bug...

I've posted this bug (#9734):
https://developer.berlios.de/bugs/?func=detailbug&bug_id=9734&group_id=5358

Sorry, I've forgot to set "Category" to this bug, please, fix it.

Title: Re: The 15 december 2006 build is out.
Post by: jpaterso on December 16, 2006, 12:37:52 pm
When you save any file, all trailing spasec at the and of each line are removed.

May be, it is the same bug...

I've posted this bug (#9734):
https://developer.berlios.de/bugs/?func=detailbug&bug_id=9734&group_id=5358

Sorry, I've forgot to set "Category" to this bug, please, fix it.



It's a feature, not a bug.
Settings -> Editor -> Skip trailing blanks

Joseph.
Title: Re: The 15 december 2006 build is out.
Post by: dk on December 16, 2006, 12:52:26 pm
Yes, I see.

Probably, student, that show be this "bug" after updating C::B for new build has this option enabled.

Thank you.
Title: Re: The 15 december 2006 build is out.
Post by: AmR EiSa on December 16, 2006, 02:15:31 pm
Cygwin compiler ver very good ide , but cn i ask for freebasic too . if i cn ask  :oops:
Title: Re: The 15 december 2006 build is out.
Post by: slymr on December 16, 2006, 05:57:57 pm
It's a feature, not a bug.
Settings -> Editor -> Skip trailing blanks

Joseph.

Mine is not a problem with the saving trailing blanks. It is the auto complete.
Title: Re: The 15 december 2006 build is out.
Post by: Phatency on December 16, 2006, 07:41:15 pm
Quote
- Enabled "dangerous" script-bound functions in IO script namespace providing the following operations: copy, write, delete, rename and execute.
Great! Was hoping to see those. (Well, mainly execute)
Title: Re: The 15 december 2006 build is out.
Post by: indigo0086 on December 16, 2006, 09:05:33 pm
I was wondering if there was a way to delete a file in the project instead of just removing it from view without going into explorer?
Title: Re: The 15 december 2006 build is out.
Post by: jpaterso on December 17, 2006, 12:58:00 pm
I do not know if this is the proper place to post but...

the code completion has a bug in it. When you have a space ( " " ) in your file, the code completion categorizes it as it as a separate suggestopns.

For example,

if the file is called "Test Hi.h"
you write #include "
then it gives the suggestions "Test" then "Hi.h"

Another thing when using code completion after an #include.
The layout for my projects is quite often
src/ (.cpp files go here)
src/include/ (.h files go here)
Unfortunately, code completion does not parse the directories correctly. In any file in src, as soon as I type #include "include/" all the options disappear.

Joseph.
Title: Re: The 15 december 2006 build is out.
Post by: jacmoe on December 17, 2006, 05:53:18 pm
I am also getting the compiler tools selection window on each launch, no matter what I do.
This is Win XP Home.
I hope that the next nightly build will have it fixed.
No big deal, but it would be nice if C::B remembered it.
Title: Re: The 15 december 2006 build is out.
Post by: Acki on December 17, 2006, 08:33:37 pm
I am also getting the compiler tools selection window on each launch, no matter what I do.
This is Win XP Home.
I hope that the next nightly build will have it fixed.
No big deal, but it would be nice if C::B remembered it.

I have the same problem on Win2kpro(sp4) !!!  :shock: