Reputation: 1
I have a 3rd party library : lib3rdPartylib.so.It is possible to check with what version of gcc has been this library compiled?
Thank you.
Upvotes: 0
Views: 221
Reputation: 3519
Try objdump to see comment section:
objdump -s -j .comment lib3rdPartylib.so
Upvotes: 1