It seems to me that both work, any difference?
Does gcc libname.so ... statically links libname.so or not?
|
It seems to me that both work, any difference? Does |
||||
|
|
|
|
|||
|
|
|
You can't statically link a dynamic library. You're just playing with two different ways to give the name of the library to the compiler driver program (gcc). larsmans is right that the -l option will look for both shared and then static libraries (unless you specify -static on the gcc call.) |
|||
|
|