silver77
silver77

Reputation: 1

It is possible to determine with what gcc vesion a library(.so) has been compiled?

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

Answers (1)

Nadir SOUALEM
Nadir SOUALEM

Reputation: 3519

Try objdump to see comment section:

objdump -s -j .comment lib3rdPartylib.so

Upvotes: 1

Related Questions