Recent Posts

Pages: 1 ... 5 6 7 8 9 [10]
91
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"


92
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.
93
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.
94
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.
95
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?
96
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.
97
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:

98
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?
99
Nightly builds / Re: The 22 February 2025 build (13620) is out.
« Last post by Wkerry on March 02, 2025, 08:10:10 am »
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.
100
Using Code::Blocks / How to set containing folder
« Last post by flycat on March 02, 2025, 03:23:24 am »
I use a tool to generate a project file, then when "create new class" see directory is not a project directory.
Select the project,"Open containing folder",it open a parent directory.
Is this a bug or does it need to be set?

use r13620 on Window10
Pages: 1 ... 5 6 7 8 9 [10]