News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

The 08 September 2007 build (4446) is out.

Started by killerbot, September 09, 2007, 01:32:01 PM

Previous topic - Next topic

mandrav

Quote from: kaidokert on September 10, 2007, 04:43:42 PM
built CB 4446 from sources on Ubuntu feisty, using deb-src http://lgp203.free.fr/ubuntu/

Locks up on startup, after asking for the compiler configuration. Starts ok in safe mode, and also starts when libcompiler.so is removed from the plugins directory.

i tried also under gdb, and hit break during lockup, doing "thread apply all bt" after that, but none of the backtraces seemed to point inside libcompiler. Ideas ? Should i post the backtraces ?

You must use wx2.8.4. A forum search would have given you the answer...
Be patient!
This bug will be fixed soon...

kaidokert

yes, upgrade to wx 2.8.4 from 2.8.1 fixed the issue ( without recompilation of CB, too )
yes, i probably should have done more digging on forums before

dje

Hi !

Quote from: Ceniza on September 10, 2007, 05:27:01 PM
Quote from: dje on September 10, 2007, 10:46:31 AM
Hi all !

Quote from: Ceniza on September 09, 2007, 08:29:49 PM
So it's really a "missing symbols" error. It's a shame Windows does not report the missing symbol (specified procedure).

Do you know how to get the symbol on Linux ? (Ubuntu 7.04)

Dje

The symbol is shown in the error window (if logging is enabled).

Yes, it works ! Thanks for the tip  Ceniza !
For others, to enable logging, you just have to set it with wxLog::EnableLogging(true); in  bool CodeBlocksApp::OnInit()
Index: /media/hda3/codeblocks/trunk/src/src/app.cpp
===================================================================
--- /media/hda3/codeblocks/trunk/src/src/app.cpp        (rĂ©vision 4466)
+++ /media/hda3/codeblocks/trunk/src/src/app.cpp        (copie de travail)
@@ -428,7 +428,7 @@

bool CodeBlocksApp::OnInit()
{
-    wxLog::EnableLogging(false);
+    wxLog::EnableLogging(true);

     SetAppName(_T("codeblocks"));
     s_Loading = true;


Dje

MortenMacFly

Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]