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
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