fb303 icon indicating copy to clipboard operation
fb303 copied to clipboard

libfb303_thrift_cpp.so.1.0.0 doesn't have a SONAME

Open yurivict opened this issue 4 years ago • 5 comments

rev. 94cac88

yurivict avatar Nov 22 '20 22:11 yurivict

Would you submit a PR?

@michel-slm

yfeldblum avatar Nov 23 '20 03:11 yfeldblum

So this is intentional - since fb303's API is not stable, leaving the SONAME unset means CMake uses the same value for version and soname. Packagers building shared libraries should make sure to always bump the version.

I'm open to better ideas, or maybe we should just document this better.

michel-slm avatar Nov 23 '20 19:11 michel-slm

You don't set SONAME at all. You should add the corresponding argument to the link command.

yurivict avatar Nov 23 '20 19:11 yurivict

see https://cmake.org/cmake/help/latest/prop_tgt/VERSION.html

For shared libraries VERSION and SOVERSION can be used to specify the build version and API version respectively. When building or installing appropriate symlinks are created if the platform supports symlinks and the linker supports so-names. If only one of both is specified the missing is assumed to have the same version number.

Oh, wait, you mean SONAME, not SOVERSION. Where would you suggest it should be set? libfb303_thrift_cpp is eventually generated by this (add_fbthrift_library invokes add_fbthrift_cpp_library)

https://github.com/facebook/fb303/blob/9cf1b57ccc77dce820a3407d7e554b8532921e62/build/fbcode_builder/CMake/FBThriftCppLibrary.cmake#L129-L139

michel-slm avatar Nov 23 '20 21:11 michel-slm