Author Topic: The 20 July 2011 build (7289) is out.  (Read 46449 times)

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 20 July 2011 build (7289) is out.
« Reply #15 on: August 01, 2011, 07:38:32 pm »
I attach the project. You will need CMake to generate the project file. Go to WorPackage1.5/build and "cmake" there.
(Don't pay much to the code, it's in pre-alpha stage ^^).
Confirmed!

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 20 July 2011 build (7289) is out.
« Reply #16 on: August 02, 2011, 06:24:03 am »
Everytime I open my project and then open a specified file, CodeBlocks freezes forever.
I just do like this:
 I open my project (this is a Unix Makefiles project generated by CMake).
 I set project tree -> Don't display as on disk and then Hide directory name
 I try to open one of my files.
 => Freeze
So maybe the CC bug you say you have fixed isn't really fixed...

I'm using CodeBlocks svn 7288 from jens on my Ubuntu 11.04 64 bits.
I can provide the project if necessary.
Because the top level path always be "/" on Linux.
This lead to finding up the file, to spend a lot of time, it is not freeze, just busy.
It's should fixed in HEAD.
« Last Edit: August 02, 2011, 06:25:34 am by Loaden »

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 20 July 2011 build (7289) is out.
« Reply #17 on: August 03, 2011, 03:52:51 am »
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

Revision is svn 7288 (7289 is debugger-branch and will follow soon).
Settings > Editor, the "Code completion" page missing now.
64-bit on Linux Mint.

Offline blend

  • Multiple posting newcomer
  • *
  • Posts: 32
Re: The 20 July 2011 build (7289) is out.
« Reply #18 on: August 03, 2011, 05:25:49 pm »
Thank you very much for your hard work! I hope it will fix it :) .

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 20 July 2011 build (7289) is out.
« Reply #19 on: August 03, 2011, 05:36:33 pm »
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

Revision is svn 7288 (7289 is debugger-branch and will follow soon).
Settings > Editor, the "Code completion" page missing now.
64-bit on Linux Mint.
I have it.
Trunk-binaries from my repo, not tested with debugger-branch.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 20 July 2011 build (7289) is out.
« Reply #20 on: August 05, 2011, 07:22:01 pm »
Patch needed against trunk for Windows NON-PCH Build

Code
Index: src/include/cbstatusbar.h
===================================================================
--- src/include/cbstatusbar.h (revision 7328)
+++ src/include/cbstatusbar.h (working copy)
@@ -7,6 +7,7 @@
 #define CBSTATUSBAR_H
 
 #include <vector>
+#include <wx/statusbr.h>
 
 #include "settings.h"
 

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 20 July 2011 build (7289) is out.
« Reply #21 on: August 06, 2011, 09:11:42 am »
applied. Thanks.

Offline Randajad

  • Multiple posting newcomer
  • *
  • Posts: 13
Re: The 20 July 2011 build (7289) is out.
« Reply #22 on: August 06, 2011, 01:14:02 pm »
Please, add fully MSVC debugger(cdb.exe) support. T_T It's very, VERY poorly.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 20 July 2011 build (7289) is out.
« Reply #23 on: August 06, 2011, 07:42:10 pm »
cdb.exe has better support in the debuggers branch. But we need active users of CDB, which can provide patches.

Also keep in mind that full support is not possible, because cdb.exe is meant for humans, not computer parsers or IDE integration.
Thus there are major limitations in the possible features.
(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!]

Offline blend

  • Multiple posting newcomer
  • *
  • Posts: 32
Re: The 20 July 2011 build (7289) is out.
« Reply #24 on: August 11, 2011, 10:46:11 am »
Everytime I open my project and then open a specified file, CodeBlocks freezes forever.
I just do like this:
 I open my project (this is a Unix Makefiles project generated by CMake).
 I set project tree -> Don't display as on disk and then Hide directory name
 I try to open one of my files.
 => Freeze
So maybe the CC bug you say you have fixed isn't really fixed...

I'm using CodeBlocks svn 7288 from jens on my Ubuntu 11.04 64 bits.
I can provide the project if necessary.
Because the top level path always be "/" on Linux.
This lead to finding up the file, to spend a lot of time, it is not freeze, just busy.
It's should fixed in HEAD.

I tried SVN 7361 and it seems that it did fix it :) ! Thank you very much for you work!

Offline christobal

  • Multiple posting newcomer
  • *
  • Posts: 41
Re: The 20 July 2011 build (7289) is out.
« Reply #25 on: August 12, 2011, 11:32:24 am »
not sure if this is the right place to post it, but the log message in Rev. 7307 referred to this thread so i think it's ok...

The change to cbproject.cpp in Rev. 7307 changed the layout of the project tree in the workspace if the Code::Blocks project file is not in the top - level directory of the project.

My project structure is as follows:
Code
-
 |-libs
 |   |-... some files
 |-pjt
 |   |-demo.cbp
 |-src
     |-main.c
     |-... some more source files

and this is now be displayed like in the picture of the attachement...