Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
FWIW, the NassiShneiderman plugin has a dependency on the Boost library. At least in the MSYS2 environment that I use on Microsoft Windows 10  to build Code::Blocks with the NassiShneiderman plugin, the Boost library (acquired via "pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-boost-libs") will have already pulled in the ICU library (otherwise acquired via "pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-icu") as it is a dependency. Note: only use the --needed option if you know you MSYS2 environment is already otherwise up to date.
2
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Miguel Gimenez on Today at 11:35:39 am »
The text in Parser::ShowGlobalChangeAnnoyingMsg() should allow translation, something like this:
Code
warningMsg = _("The global settings change does not take effect\n"
               "until the projects are either reloaded or reparsed.\n\n"
               "You can selectively reparse projects by right clicking\n"
               "on the project title in the Workspace tree and selecting\n"
               "'Reparse current project'.");
3
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Elena on Yesterday at 11:10:15 pm »
Hi, thanks for your support. Since at present I am not equipped to compile C::B I will surely test once the new NB binary is ready (it seems there haven't been any new NB since December btw)
4
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Pecan on Yesterday at 10:57:57 pm »
Hi, I hope this message will be noticed. I did not open a new topic because it is definitely related to build 13529 and over.

I also have experienced major slowdowns since b13529.
What I wanted to point out is that the culprit was indeed Browse Tracker, I disabled it and now everything is fine as before.
At the moment of writing this, current NB is 13600 and the problem is *still present*. Therefore, I simply have to keep the plugin disabled. Hope this helps.
Therefore, please consider fixing the plugin, which is causing major slowdowns since b13529

Thx

Fixed svn 13612.

The actual slowdown culprit was CodeCompletion  (CC) "Parse while typing" setting. However when the user disabled settings while a project was loaded, CC clobbered the settings back to the older condition as the project was closed.

Although the fix preserves the users settings in the .conf (global settings) the user will still have to re-parse the projects/files in order to apply the changed CodeCompletion global settings to the projects or files.

The easiest way to do that is to close and reopen the workspace or right-click on a project in the workspace tree and select 'Reparse this project'.
5
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Pecan on Yesterday at 10:48:36 pm »
@ ollydbg

Thanks for all your help and excellent guidance.
I decided to break the changes up into two tasks.

I've committed what we have. (svn 13612) and will continue with your further suggestions.
But after I study CC some more and get more confident about your suggestions.



Thanks,
6
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by perosoft on Yesterday at 03:56:28 pm »
Prior to archlinux, i have kubuntu.
All work with no problems.
This problem apear on arch linux
And yes, system("/usr/local/texlive/2024/bin/x86_64-linux/latex");, working.
Thank you !
7
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by Михаил Агарков on Yesterday at 10:28:14 am »
You need to do system("/usr/local/texlive/2024/bin/x86_64-linux/latex");
instead or install latex in /usr/bin/ for it to work AFAIK.
8
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by perosoft on Yesterday at 05:02:12 am »
This is pdfTeX, Version 3.141592653-2.6-1.40.26 (TeX Live 2024) (preloaded format=latex)
 restricted \write18 enabled.

which latex
/usr/local/texlive/2024/bin/x86_64-linux/latex

user .bashrc

cat .bashrc
#
# ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '

export PATH="/usr/local/texlive/2024/bin/x86_64-linux:$PATH"
9
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by stahta01 on February 14, 2025, 05:47:05 pm »
Posting the result of below from the system shell might help

Code
which latex
10
Using Code::Blocks / Strange behavior in xterm
« Last post by perosoft on February 14, 2025, 09:44:16 am »
Hi,

Using codeblocks with gcc compiler, linux.
When i run program in codeblocks, xterm appear.
In source i have a system call: system("latex");
Result is: sh: line 1: latex: command not found.
But if i simple launch xterm latex is found.
Launching xterm by codeblocks does not find latex.

If i launch codeblocks from console all is fine xterm find latex
Details
Host: arch Kernel: 6.13.2-arch1-1 arch: x86_64 bits: 64 compiler: gcc v: 14.2.1
Desktop: KDE Plasma v: 6.3.0 Distro: Arch Linux

Sugestions, please !



Pages: [1] 2 3 4 5 6 ... 10