I need to hide a specific exported symbol. Which is "___udivdi3" But i don't know how.
I have a script the strip symbols after the build. Then i have to pass the binary into a third party tool (wrapper)that complain about this exported symbol. Any help would be appreciated.
Have a look a this discussion: What is the difference between "gcc -s" and a "strip" command?
Try strip -N ___udivdi3 objfile
.