Author Topic: The 08 September 2007 build (4446) is out.  (Read 27378 times)

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 08 September 2007 build (4446) is out.
« Reply #15 on: September 10, 2007, 05:43:01 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

  • Guest
Re: The 08 September 2007 build (4446) is out.
« Reply #16 on: September 11, 2007, 03:08:32 pm »
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

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: The 08 September 2007 build (4446) is out.
« Reply #17 on: September 12, 2007, 11:59:58 pm »
Hi !

Hi all !

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()
Code
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

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 08 September 2007 build (4446) is out.
« Reply #18 on: September 13, 2007, 07:49:01 am »
Code
-    wxLog::EnableLogging(false);
+    wxLog::EnableLogging(true);
See here: http://forums.codeblocks.org/index.php/topic,6843.msg52801.html#msg52801 ;-)
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ