User forums > Nightly builds

The 15 November 2007 build (4639) is out.

<< < (10/14) > >>

Acki:

--- Quote from: Knx on November 20, 2007, 12:45:27 am ---I've create a file "trash.cpp" adding to project Release options, then I've gone to the project folder and pressed SHIFT-DEL. The file gone to space. C::B asked me if I want to keep or not the file in the editor, I said NO, C::B crashed.

--- End quote ---
I can confirm this, too !!!
and I get this error message from Windows:

pauliusz:

--- Quote from: Acki on November 20, 2007, 03:13:04 am ---
--- Quote from: Knx on November 20, 2007, 12:45:27 am ---I've create a file "trash.cpp" adding to project Release options, then I've gone to the project folder and pressed SHIFT-DEL. The file gone to space. C::B asked me if I want to keep or not the file in the editor, I said NO, C::B crashed.

--- End quote ---
I can confirm this, too !!!

--- End quote ---

Fixed in [ Patch #2252 ] Fix crash when removing file outside CB

Biplab:

--- Quote from: pauliusz on November 21, 2007, 01:19:16 am ---Fixed in [ Patch #2252 ] Fix crash when removing file outside CB

--- End quote ---

Thanks for the patch. Applied in revision 4651. :)

mastro:

--- Quote from: mastro on November 17, 2007, 02:42:06 am ---i cant' compile this on Linux

here the error i get: http://pastebin.com/f78ffa07c

my system is Ubuntu Feisty at the moment

this is what i've done:


--- Code: ---svn checkout svn://svn.berlios.de/codeblocks/trunk codeblocks-1.0svn4639 --revision 4639
cd codeblocks-1.0svn4639/
for f in $(find .); do dos2unix $f; done;

--- End code ---

can anybody help me with this?
is this the wrong section to ask?

since it doesn't say "include file missing" i really think this is a bug with either codeblocks or wxwidget...

then fixed changelog version to 6439
and changed int ./debian/control libstdc++6-4.0-dev to libstdc++6-4.1-dev (the 6-4.0 is'nt in the ubuntu repository and i don't think it change a lot)


--- Code: ---cat /usr/share/aclocal/libtool.m4 >> aclocal.m4
./bootstrap
sudo /usr/lib/pbuilder/pbuilder-satisfydepends # this downloaded all dependences
sudo debuild --linda -us -uc
--- End code ---

am i doing something wrong or it's a bug?


--- End quote ---

can anybody reply to me??
is this the wrong section?
i think it's a bug with codeblocks cause i don't see any "file missing" error

EDIT/UPDATE:
it seems like an header is missing..
i've asked in the #wxwidget irc support channel and they told me the code miss some #include...
for instance it seems to miss <wx/wx.h> as they told me..
to be precise i've added

--- Code: ---#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/treectrl.h>

--- End code ---

to the src/include/loggers.h

and then it compile loggers.cpp just fine...

they (#wxwidget) told me this bug could be experienced only by me due to you using some precompiled header caching to speed up build...

this is definally a codeblocks bug..

now i got another error: http://pastebin.com/f6902da1c

for this i've replaced the line 178 of src/src/infopane.cpp
from

--- Code: ---menu.AppendSubMenu(view, _("Toggle..."));
--- End code ---

with

--- Code: ---menu.DoAppend(wxMenuItem::New(&menu, wxID_ANY, _("Toggle.."), wxEmptyString, wxITEM_NORMAL, view));
--- End code ---

i don't know if this is correct but it compile with this change!

anyway.. the "AppendSubMenu function is not in the 2.6 wx code.. i've found it in the wx 2.8
may be i should say it to compile all with 2.8...
i'll try.... and will keep you informed but please.. reply me

(sorry my bad english)

Last-Attacker:

--- Quote from: mastro on November 22, 2007, 01:24:33 am ---can anybody reply to me??
is this the wrong section?
i think it's a bug with codeblocks cause i don't see any "file missing" error

EDIT/UPDATE:
it seems like an header is missing..
i've asked in the #wxwidget irc support channel and they told me the code miss some #include...
for instance it seems to miss <wx/wx.h> as they told me..
to be precise i've added

--- Code: ---#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/treectrl.h>

--- End code ---

to the src/include/loggers.h

and then it compile loggers.cpp just fine...

they (#wxwidget) told me this bug could be experienced only by me due to you using some precompiled header caching to speed up build...

this is definally a codeblocks bug..

now i got another error: http://pastebin.com/f6902da1c

for this i've replaced the line 178 of src/src/infopane.cpp
from

--- Code: ---menu.AppendSubMenu(view, _("Toggle..."));
--- End code ---

with

--- Code: ---menu.DoAppend(wxMenuItem::New(&menu, wxID_ANY, _("Toggle.."), wxEmptyString, wxITEM_NORMAL, view));
--- End code ---

i don't know if this is correct but it compile with this change!

anyway.. the "AppendSubMenu function is not in the 2.6 wx code.. i've found it in the wx 2.8
may be i should say it to compile all with 2.8...
i'll try.... and will keep you informed but please.. reply me

(sorry my bad english)

--- End quote ---

Did you set up wxWidgets correctly? You need to compile it for debug and runtime in monolithic and static form and have all the necessary settings set. There is a tutorial somewhere in the codeblocks wiki that explains that (http://wiki.codeblocks.org/index.php?title=Compiling_wxWidgets_2.8.6_to_develop_Code::Blocks_%28MSW%29). I know it is for windows but I am sure you will be able to get it to compile in Linux. Specify, compile, specify again and compile again (without cleaning of course!).
I remember in Windows you have to copy the setup.h from the MSW folder to the root source folder of wxWidgets. Try the same in Linux. Sorry I haven't compiled wxWidgets in Linux for almost a year now so pardon my windows approach.

It worked for me in Windows when I downloaded the CodeBlocks source via subversion and compiled it a few weeks ago. Whether this is a bug in the latest codeblocks source, I don't know, didn't have the time, energy or will to try it. But boy did codeblocks grow!

I hope my info helped you somewhat.

God Bless!

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version