News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 21 June 2009 build (5678) is out.

Started by killerbot, June 21, 2009, 05:55:27 PM

Previous topic - Next topic

oBFusCATed

An year and 3 month is more correct  :lol:

http://sources.redhat.com/gdb/ (March 27, 2008: GDB 6.8 Released!)
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

dk

Quote from: oBFusCATed on June 24, 2009, 04:32:08 PM
An year and 3 month is more correct  :lol:
Oh, yes, I see  :o

But in fact, I haven't gdb 6.8.

Jenna

I have gdb 6.8 and the vector<std::string> is not recognized correctly.

franzl

I work on a dual boot system with winxp (ntfs partition) and ubuntu 9.04 amd 64 (ext3).
In linux it's possible to open projects saved on the mounted win partition, but I cannot write to ntfs with the current nightly. So I cannot save changes and build the project. With stable 8.02 it works correctly.

Jenna

Quote from: franzl on June 24, 2009, 08:08:45 PM
I work on a dual boot system with winxp (ntfs partition) and ubuntu 9.04 amd 64 (ext3).
In linux it's possible to open projects saved on the mounted win partition, but I cannot write to ntfs with the current nightly. So I cannot save changes and build the project. With stable 8.02 it works correctly.

See here for an explanation and a possible solution.

oBFusCATed

Ah, the problem is in C::B...

Here is part of the debug log:

Registered new type: wxString
Registered new type: STL String
Registered new type: STL Vector

The string is registered first and vector<string> matches the regexpr for the string class, so C::B tries to display it as string :(
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

oBFusCATed

Is there some code in C::B (the code completion a suppose) that can parse the type of that is returned from the 'whatis' command?
Using regexpr is not robust :(
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

ollydbg

Quote from: oBFusCATed on June 25, 2009, 10:30:30 PM
Is there some code in C::B (the code completion a suppose) that can parse the type of that is returned from the 'whatis' command?
Using regexpr is not robust :(
In the Code Completion source code. There are two kind of parsers.
One is the general parser which parse all the files in the current workspace, and generate a database.
The other is a local parser which parse the locally context code, to give a tooltip or calltip things, it use many functionality from scintella.

I suggest using the first one. These code were located in:
parserthread.cpp (Note, both files in disk and wxstring in memory can be parsed) :D
But seems a little complex :D
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

nanyu

there are two bookmasks submenus.

[attachment deleted by admin]

ollydbg

Quote from: nanyu on June 26, 2009, 11:42:20 AM
there are two bookmasks submenus.

This is (maybe) mmkider's TraceBar plugin issue :D see here
I have reported several days ago. You can check the new released one.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Hans Henrik

Quote- Fix crash when backspace\cut after Ctrl-A (Thanks Loaden)
i cant reproduce this bug in rev 5616 at least
well guess it occurred later, w/e

danielnet

Hi,
after installing this nightly build (5678) CB crashes when clicking "project/built options..." or "project/properties..."

I am using Windows Vista, gcc 4.4.0, gdb 6.8. (Compiling and debugging works fine.)
Can me please someone give a hint what might be wrong?

Thanks
Daniel

squalyl

well, aren't nightly builds supposed to be built... nightly?
why are there no more releases since june 21? holidays? :D

Wavesonics