Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Help / Re: Can split windows be disabled.
« Last post by Pecan on Today at 01:26:08 am »
I mean that I have already a bunch of open files with the tabs at the top of the window.

I active the second project in the workspace.

In the active editor window, I right click on (for example) a symbol  (say) "Dap_stackId" and ask for references. The reference then show in the Search results tab.

I then double click on a line in the Search results tab and the file opens in a split window behind the window I clicked and searched in.

There's a fine vertical line in the far left of my source window (called the splitter line, I guess) in the editor window that indicates that the window has split. But I hardly ever see it. (old eyes).  All the files now open in the split-ed window (with it's own tabs) behind my original source window.

Very confusing to me.     

I just want to disable the splitting windows ability if possible. I never use it. So it's no loss to me.

When I have time, I'll see if I can re-create the problem and debug it. But for now the DAP debugger development is all I can handle.

Turning split windows off would be a big help for now.

This does not always happen. But I do know that it happens when there are a lot of files open from both projects at the same time. It never happens when I'm working in only one project.

BTH, I'm working with the latest committed version of CB.
I don't think it has anything to do with a recent commit though.

Thanks.
2
Nightly builds / Re: The 30 June 2024 build (13533) is out.
« Last post by stahta01 on Today at 01:17:47 am »
Hi.
I've just made a test on a virtual machine : made a new install of Linux Mint 22 Cinnamon, and directly installed the last nightly from the ppa.
It seems that all is ok : no crash.

Did you try removing all codeblocks related stuff (including libwxgtk) ?

Regards
Xav'

Did you look at the CB version he gave? Because it did not make sense to me how old it was.
Code
Version                : svn-r13046

Tim S.
3
Nightly builds / Re: The 30 June 2024 build (13533) is out.
« Last post by Xaviou on Yesterday at 06:46:43 pm »
Hi.
I've just made a test on a virtual machine : made a new install of Linux Mint 22 Cinnamon, and directly installed the last nightly from the ppa.
It seems that all is ok : no crash.

Did you try removing all codeblocks related stuff (including libwxgtk) ?

Regards
Xav'
4
Development / Re: Support for c++20 modules
« Last post by Waingrove on Yesterday at 06:42:07 pm »
I'm just starting out , again. And I'm learning on c++ 23. Using mingw64.14.1. It does support modules but I do not yet know how to precompile the module using codeblocks, yet. However using gcc is not difficult. Open a cmd in the folder of the project you are working on. Set the path for gcc , if you have not already done so. An example is  "set PATH=C:\Program Files\CodeBlocks\mingw64.14.1\bin;%PATH".  Run the following command: "g++ -std=c++2b -fmodules-ts -c -x c++ <filename.cppm>" .  g++ runs gcc, -std=c++2b : tells gcc to use c++23 , -fmodules-ts tells the compiler you are using modules, -c - Compile or assemble the source files, but do not link. The linking stage simply is not done. The ultimate output is in the form of an object file for each source file., -x forces gcc to use the language specified , c++ , then filename.cppm or however you label module file extension. If successfully built you should see a new folder gcm.cache. And a new object , filename.o in the root folder of your project.

If you figure out how to simply use codeblocks , respond.
5
Nightly builds / Re: The 30 June 2024 build (13533) is out.
« Last post by Miguel Gimenez on Yesterday at 06:17:33 pm »
Can you attach crash information?
6
Hi,   and Hi Xaviou,

After (failed, but after success with many investigations) migrate to Linux Mint 22 on my fix PC (residual bug into "mintupdate"), I have must reinstalled all my Linux/Ubuntu system, and installed too man>

First install with CB with command "sudo apt install codeblocks" :
Lecture des listes de paquets... Fait
Construction de l'arbre des dpendances... Fait
Lecture des informations d'tat... Fait
Paquets suggrs:
  codeblocks-contrib libwxgtk3.0-dev
Les NOUVEAUX paquets suivants seront installs:
  codeblocks
0 mis  jour, 1 nouvellement installs, 0  enlever et 3 non mis  jour.
Il est ncessaire de prendre 0 o/1858 ko dans les archives.
Aprs cette opration, 7121 ko d'espace disque supplmentaires seront utiliss.
Slection du paquet codeblocks prcdemment dslectionn.
(Lecture de la base de donnes... 1256663 fichiers et rpertoires dj installs.)
Prparation du dpaquetage de .../codeblocks_20.03+svn13046-0.3build2_amd64.deb ...
Dpaquetage de codeblocks (20.03+svn13046-0.3build2) ...
Paramtrage de codeblocks (20.03+svn13046-0.3build2) ...

All good, test with gcc OK, and result of open screen Information into Help of CB is next :

Name                   : Code::Blocks
Version                : svn-r13046
SDK Version            : 2.23.0
Scintilla Version      : 3.7.5
Author                 : The Code::Blocks Team
E-mail                 : info@codeblocks.org
Website                : https://www.codeblocks.org
OS                     : Linux 6.8.0-41-generic x86_64
Scaling factor         : 1.000000
Detected scaling factor: 1.000000
Display PPI            : 96x96
Display count          : 1
Display 0              : XY=[0,0]; Size=[1920,1080]; Primary

wxWidgets Library (wxGTK port)
Version 3.2.4 (Unicode: wchar_t, debug level: 1),
Runtime version of toolkit used is 3.24.
Compile-time GTK+ version is 3.24.41.

And, to use "last" nigthly, I add ppa repository : "sudo add-apt-repository ppa:x-psoud/cbnb", and after first "sudo apt update", and finally "sudo apt install codeblocks", install good, but crash with next run of CB.

I can reproduce same bug, with remove CB and execute same installed instructions. On my laptop, with Linux Mint 21.3, CB nightly work fine, with this ppa.

Someone constat this behaviour on "same" systems ?

Thank's

Regards.

Thierry D.

PS : results of :
"lsb_release -a"
No LSB modules are available.
Distributor ID: Linuxmint
Description:    Linux Mint 22
Release:        22
Codename:       wilma

"uname -a"
Linux thierry-VS201AA-ABF-HPE-010fr 6.8.0-41-generic #41-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug  2 20:41:06 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

"gcc --version"
gcc (Ubuntu 14.2.0-1ubuntu1~24.04) 14.2.0
Copyright (C) 2024 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7
Development / Re: build bot in the github, I see one nice project
« Last post by ollydbg on Yesterday at 01:41:06 pm »
It was not successful when I tried
Code
MSYS2_ARG_CONV_EXCL=* mingw32-make
. We can't use normal make, for certain reason(because those lines calling cmd /c will fail.) I always get failed using Windows' pure command line. Maybe we can only use the configure/make structure.
Edit: I'm seeing that cmd /c executed successfully when using normal make. It's hoped that the current action will be successful.

Maybe, you should try something like:

Code
MSYS2_ARG_CONV_EXCL='*' mingw32-make

I haven't tried it, because I know nothing about how to debug a github action script.
8
Development / Re: build bot in the github, I see one nice project
« Last post by Grit Clef on Yesterday at 01:23:44 pm »
It was not successful when I tried
Code
MSYS2_ARG_CONV_EXCL=* mingw32-make
. We can't use normal make, for certain reason(because those lines calling cmd /c will fail.) I always get failed using Windows' pure command line. Maybe we can only use the configure/make structure.
Edit: I'm seeing that cmd /c executed successfully when using normal make. It's hoped that the current action will be successful.
Still failed...
9
Help / Re: cant use alt codes
« Last post by stahta01 on Yesterday at 01:01:45 pm »
Both of those work for me using a recent nightly build under Windows 10
Code
Name                    : Code::Blocks
Version                 : svn-r13536
SDK Version             : 2.25.0
Scintilla Version       : 3.7.5
Author                  : The Code::Blocks Team
E-mail                  : info@codeblocks.org
Website                 : https://www.codeblocks.org
OS                      : Windows 10 (build 19045), 64-bit edition
Scaling factor          : 1.250000
Detected scaling factor : 1.250000
Display PPI             : 120x120
Display count           : 2
Display 0 (\\.\DISPLAY1): XY=[0,0]; Size=[1280,1024]; Primary
Display 1 (\\.\DISPLAY2): XY=[1280,0]; Size=[1920,1080];

wxWidgets Library (wxMSW port)
Version 3.2.5 (Unicode: wchar_t, debug level: 1),
compiled at May 20 2024 09:38:01

Runtime version of toolkit used is 10.0.
10
Help / Re: Can split windows be disabled.
« Last post by ollydbg on Yesterday at 11:44:58 am »
Sorry, I really don't understand you steps.

What do you mean by a "hidden tab", is it a tab(editor) already opened, but not active?
Pages: [1] 2 3 4 5 6 ... 10