I setup a post-build step which invokes fromelf with option --nodebug and I get the warning
Q3912W: Option 'nodebug' is deprecated
Which is the right option to use instead of the deprecated nodebug?
Hi vix,
It looks like you are trying to remove the debug information from the image.
Instead you can use the :
--strip=debug
option as detailed at https://developer.arm.com/docs/100071/latest/fromelf-command-line-options/-stripoptionoption
The link details the various options that are available.
I hope this helps you ?
Regards,
Stuart