Say I have two static libraries that were not built by me and I have no control over their contents.
Library 1 has functions:
A()
B()
C()
Library 2 has functions:
A()
D()
E()
Both need to be linked into a calling application but the naming conflict of A() throws errors.
Is there a way to say "Ignore A() from Library 1 when linking" in linux using gcc and ld.