Recent Posts

Pages: 1 ... 5 6 7 8 9 [10]
91
Help / Re: Problem writing in forum
« Last post by Miguel Gimenez on March 03, 2025, 01:50:05 pm »
There are some unexpected non-ASCII characters, like most quotation marks.

Divide your message in two parts and create one post for each part to find the culprit; iterate if needed.
92
Help / Re: Problem writing in forum
« Last post by gtafan on March 03, 2025, 01:11:01 pm »
This is usually because you have written some non-ASCII character.
How that? I am writing in english, so no non-ASCII characters posible.
93
Help / Stripping debug info from output tree
« Last post by wtfisgoingoff on March 03, 2025, 12:24:29 pm »
Windows 11 

I got those msg  after running update32_64.bat (@call update.bat 32_64)
strip: 'output32_64\*.exe': No such file 
strip: 'output32_64\*.dll': No such file 
strip: 'output32_64\share\CodeBlocks\plugins\*.dll': No such file   

I added those cmd into that bat file  dir "%CB_OUTPUT_DIR%\*.exe"   echo CB_OUTPUT_DIR=%CB_OUTPUT_DIR%   
CB_OUTPUT_DIR outputed correctly    and  all *.exe were listed   

chatgpt suggested this cmd and it worked 

for %%f in ("%CB_OUTPUT_DIR%\*.exe") do strip "%%f"
for %%f in ("%CB_OUTPUT_DIR%\*.dll") do strip "%%f"
for %%f in ("%CB_OUTPUT_RESDIR%\plugins\*.dll") do strip "%%f" 
 
So what might be wrong here? Original strip cmds in update.bat are
strip "%CB_OUTPUT_DIR%\*.exe" 
strip "%CB_OUTPUT_DIR%\*.dll"
strip "%CB_OUTPUT_RESDIR%\plugins\*.dll"


94
You have the command-line utility cbp2make.exe in the same folder of CodeBlocks.exe. It is easy to integrate in the menu using the Tools+ plugin, see this wiki article for a how-to.
95
Announcements / Re: successor of 20.03 available?
« Last post by Miguel Gimenez on March 03, 2025, 10:08:59 am »
Looks like 25.03 is on the way.
96
Help / Re: Problem writing in forum
« Last post by Miguel Gimenez on March 03, 2025, 10:08:23 am »
This is usually because you have written some non-ASCII character.
97
Announcements / Re: successor of 20.03 available?
« Last post by ygc369 on March 03, 2025, 02:22:20 am »
Any progress? Will we see the next version this year?
98
Nightly builds / Re: The 22 February 2025 build (13620) is out.
« Last post by stahta01 on March 02, 2025, 06:01:02 pm »
Finally got around to downloading the 13620 nightly. When I run the codeblocks.exe I get pop up error below, which will cause issues with a bunch of users who are not familiar with the GCC environment as it looks like a C::B issue as looks like it pops up during the startup sequence. The issue is with cc1plus.exe, but

---------------------------
cc1plus.exe - System Error
---------------------------
The code execution cannot proceed because libmpc-3.dll was not found. Reinstalling the program may fix this problem.
---------------------------
OK   
---------------------------

I set the default compiler to no compiler and still got the same issue.

I wonder if my config file has become corrupted/bad.

That looks to be an GCC toolchain problem to me.

Edit: CB checks for the version of GCC during startup.

Tim S.
99
Help / Problem writing in forum
« Last post by gtafan on March 02, 2025, 05:14:12 pm »
When I try to write some post on the forum geting this error mesage:

100
General (but related to Code::Blocks) / Make a makefile from current project
« Last post by typicalc on March 02, 2025, 03:40:07 pm »
Is there some menu option where I can make a makefile from current project?
Pages: 1 ... 5 6 7 8 9 [10]