Recent Posts

Pages: 1 2 3 4 5 6 [7] 8 9 10
61
Help / Re: Debugger (gdb) no longer stops at breakpoints or ends
« Last post by flutherdisaster on February 25, 2026, 04:19:36 am »
Verifying that the Mingw architecture matched the architecture of the installed IDE resolved the problem. (32-bit CB and 32-bit Mingw32).
62
Development / svn rev 13798 issue?
« Last post by ollydbg on February 25, 2026, 02:39:15 am »
Hi, Pecan, I see this commit:

https://sourceforge.net/p/codeblocks/code/13798/

Some of changes in the cbp files are not expected? I think the macro variable "CODEBLOCKS" is not needed here.
63
Development / Re: special handling of the macro replacement ""?
« Last post by ollydbg on February 24, 2026, 02:01:03 pm »
Any chance for noobs for the following?
   https://github.com/stahta01/CodeBlocks_Unofficial_Testing/blob/master/src/CodeBlocks_Windows_MSYS2.cbp

If I remember correctly. the msys2's wx library is shared library, so it has many separate libraries. I'm not sure it is easy to add to gd_on's cbp.
64
Development / Re: special handling of the macro replacement ""?
« Last post by Wkerry on February 24, 2026, 11:10:52 am »
Any chance of getting the following in once update to make the cbp's consistent as this will also reduce the cbp quantity?
     https://github.com/stahta01/CodeBlocks_Unofficial_Testing/blob/master/src/CodeBlocks_Unix_MacOS.cbp

Any chance for noobs for the following?
   https://github.com/stahta01/CodeBlocks_Unofficial_Testing/blob/master/src/CodeBlocks_Windows_MSYS2.cbp
65
General (but related to Code::Blocks) / Re: Someone on Reddit can't register to forums
« Last post by ParduzGM on February 23, 2026, 07:20:08 pm »
Maybe, he could change his email address and register again.
Thankyou.

gmail.com worked, yahoo.it still does not. I would like to the other one, if possible.

Anyway, thank to you both.
66
We can have several steps:
1, keep the old(existing) cbps and add the new unified windows cbps to the svn repo.
2, wait for several months.
3, finally those old cbps should be removed.
67
I lot of tools help me to find the crash/assert.

1, gd_on's unified code::blocks cbp/workspace files(gerard-durand/codeblocks_gd_cbps: Workspace and projets files to build Code::Blocks for Windows as a wxWidgets version independant), I can simply change the option so it links to the debug version of the wx 3.3.1, just change a global compiler variable wxWidgets.WX_SUFFIX from "u" to "ud". Without this unifiled cbp, I think I need a lot of changes.

2, gdb(I'm currently using ssbssa/gdb: Unofficial Windows build of gdb with added features., I think other gdbs are all good)can catch such crash call stack.

68
General (but related to Code::Blocks) / Re: Someone on Reddit can't register to forums
« Last post by ollydbg on February 23, 2026, 04:23:27 am »
https://www.reddit.com/r/codeblocks/comments/1r8vgpr/is_codeblocks_still_alive/

Thanks for the report.

Maybe, he could change his email address and register again.

If that still failed, I think I will wrote an email to our web admin to check whether the email system works or not.

Note the email notification(our the forum thread) works OK.
69
@ ollydbg

Thank you for that traceback. It spots the errror.
I can be so dumb sometimes. I remember that I copied that code from the original testing "prob of LSP" and told my self I'd need to revisit later. Then I forgot.


I'll fix it to use cross thread communication.
70
Another issue is the payload.

Code
e.SetPayload<std::string*>(&stdstr);
m_notifiedWindow->ProcessEvent(e);

We can not pass the local variable's address from the worker thread to the GUI thread, we should bring the whole std::string instead.
Pages: 1 2 3 4 5 6 [7] 8 9 10