Rice University logo
 
Top blue bar image Kiran Thyagaraja
Brain Dump
 

Creating a Shared Library from a Static Archive

ar -x libatlas.a
gcc -fPIC -shared *.o -o libatlas.so

If you encounter an error with the linker that refers to multiple definitions of a function then pass the following option to the linker:

gcc -Xlinker -fPIC -shared *.o -o libatlas.so

Comments are closed.