0

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.

Tosh
  • 2,097
  • 3
  • 13
  • 8

1 Answers1

0

Have a look a this discussion: What is the difference between "gcc -s" and a "strip" command?
Try strip -N ___udivdi3 objfile.

Community
  • 1
  • 1