I am building .so library and was wondering - what is the difference b/w -h and -o cc complier option (using the Sun Studio C++) ?
Aren't they are referring to the same thing - the name of the output file?
feedback
|
|
One common use is to provide library minor version numbers. For instance, if you're creating the shared library libfoo, you might do:
Then if you compile your hello world app and link against it with
the elf binary for hello will record a Then when you need to add new functions later, you could change the This is also sometimes used when building libraries in the same directory they're used at runtime, if you don't have a separate installation directory or install via a packaging system. To avoid crashing programs that are running when you overwrite the library binary, and to avoid programs not being able to start when you're in the middle of building, some Makefiles will do:
(Makefiles built by the old Imake makefile generator from X commonly do this.) | |||
|
feedback
|
|
They are referring to different names. Specifically, the | |||
|
feedback
|
|
The -o option will name the output file while the -h option will set an intrinsic name inside the library. This intrinsic name has precedence over the file name when used by the dynamic loader and allows it to use predefined rules to peek the right library. You can see what intrinsic name was recorded into a given library with that command: elfdump -d xxx.so | grep SONAME Have a look here for details: http://docs.sun.com/app/docs/doc/817-1984/chapter4-97194?a=view | |||
|
feedback
|