Recent Posts

Pages: 1 2 3 4 5 6 [7] 8 9 10
61
Help / Re: Stripping debug info from output tree
« Last post by wtfisgoingoff on March 04, 2025, 12:42:25 pm »
strip is likely part of the GCC compiler tool chain.
You likely need to add the path to that to the path of the command window you are using.

Edit: The above assumes not using MSys2

Tim S.
Can you be more specific about this "add the path to that to the path of the command window you are using" .Thx
62
Using Code::Blocks / Re: Windows Project Wizard for wxWidgets
« Last post by Lanny on March 03, 2025, 07:14:04 pm »
Just one more follow-up.

Start to create a new project.

Right click on the wxWidgets wizard option, you can edit the wizard directly.

Go to the github wizard.script source and load the raw file to the clipboard.
https://github.com/PBfordev/wxpbguide/blob/master/cb/wizard/wizard.script

Back to editing the wizard, select/delete all the old code, then paste the new raw code from the clipboard. 

Save it.  That updates the wizard with the new content.
63
Help / Re: Stripping debug info from output tree
« Last post by stahta01 on March 03, 2025, 05:45:55 pm »
strip is likely part of the GCC compiler tool chain.
You likely need to add the path to that to the path of the command window you are using.

Edit: The above assumes not using MSys2

Tim S.
64
Help / Re: Stripping debug info from output tree
« Last post by wtfisgoingoff on March 03, 2025, 04:00:28 pm »
Didn't work
65
Help / Re: Problem writing in forum
« Last post by Miguel Gimenez on March 03, 2025, 03:29:37 pm »
I did not say you used them, it was just an example of unexpected non-ASCII characters. Bisect your original message until you find the offending character.
66
Help / Re: Stripping debug info from output tree
« Last post by Miguel Gimenez on March 03, 2025, 03:27:04 pm »
Copy and xcopy are system commands, strip is not and the MSYS version may expect '/'.
67
Help / Re: Stripping debug info from output tree
« Last post by wtfisgoingoff on March 03, 2025, 03:08:43 pm »
powershell . I tried CMD and msys2 shell didn't work neither.

I installed strip by MSYS2 indeed.

'/' as path separator didn't work .

The above part of  stripping is

copy "%CB_DEVEL_DIR%\cb_console_runner.exe" "%CB_OUTPUT_DIR%\cb_console_runner.exe" > nul

echo Transferring executable files from devel to output folder
xcopy /D /y "%CB_DEVEL_DIR%\*.exe" "%CB_OUTPUT_DIR%" > nul
echo Transferring DLL files from devel to output folder
xcopy /D /y "%CB_DEVEL_DIR%\*.dll" "%CB_OUTPUT_DIR%" > nul
echo Transferring LIB files from devel to output folder
xcopy /D /y "%CB_DEVEL_DIR%\*.a" "%CB_OUTPUT_DIR%" > nul
echo Transferring DLL plugin files from devel to output folder
xcopy /D /y "%CB_DEVEL_RESDIR%\plugins\*.dll" "%CB_OUTPUT_RESDIR%\plugins" > nul

Transferring worked. So   '\' path separator should work in powershell ,cmd msys2 shell
68
Help / Re: Problem writing in forum
« Last post by gtafan on March 03, 2025, 03:03:40 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.
Have not used any Quotation_marks.
69
Help / Re: Stripping debug info from output tree
« Last post by Miguel Gimenez on March 03, 2025, 01:52:12 pm »
Are you using powershell or cmd?

EDIT: Are you using MSYS?. If so, probably strip.exe expects '/' as path separator.
70
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.
Pages: 1 2 3 4 5 6 [7] 8 9 10