Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

what is the difference between *.so and *.so.x and what does X signify and why this is done in the first place ?

share|improve this question
9  
you should improve your accept rate – Kristopher Micinski Jun 6 '12 at 14:40
Usually the "X" is a placeholder for a version number, like "foo.so.1" – vcsjones Jun 6 '12 at 14:40

1 Answer

.so is a shared object, dynamically linked library. Usually there maybe multiple names for a dynamically linked library, most of the names being names for symbolic links to the remaining name, in these names .x stands for the major version of the library, or the full version number of the particular so

for example, libmylib.so.2 would be the filename for the second major interface revision of the dynamically linked library libmylib

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.