¡@

Home 

c++ Programming Glossary: soname

Calling C/C++ from python?

http://stackoverflow.com/questions/145270/calling-c-c-from-python

to a shared library g c fPIC foo.cpp o foo.o g shared Wl soname libfoo.so o libfoo.so foo.o And finally you have to write your..

How to compile dynamic library for a JNI application on linux?

http://stackoverflow.com/questions/3950635/how-to-compile-dynamic-library-for-a-jni-application-on-linux

lib jvm java 6 sun include linux o hellolib.so shared Wl soname hello.so Hello.cpp static lc that generates the file hellolib.so.. include I opt java include linux o libhello.so shared Wl soname hello.so Hello.c HelloImpl.o static lc in step 2 we use g to..

Compiling a SWIG Python wrapper for a static library?

http://stackoverflow.com/questions/4608780/compiling-a-swig-python-wrapper-for-a-static-library

python2.6 foo_wrap.cxx g shared L. lfoo lpython2.6 Wl soname _foo.so foo_wrap.o o _foo.so The compilation succeeds but when.. I alter the linking step to g shared L. lfoo lpython2.6 Wl soname _foo.so foo_wrap.o o _foo.so then everything works. But is this.. file. The right call would be g shared L. lpython2.6 Wl soname _foo.so foo_wrap.o lfoo o _foo.so Do not be confused with lpython2.6..

What are good practices regarding shared libraries on Linux?

http://stackoverflow.com/questions/4757121/what-are-good-practices-regarding-shared-libraries-on-linux

and here is what I learnt A shared library should embed a soname including its major version number. Something like libfoo.so.1.. to say usr local lib if ldconfig is run it will read the soname and create a symlink named libfoo.so.1 pointing to libfoo.so.1.0..

Building glew on windows with mingw

http://stackoverflow.com/questions/6005076/building-glew-on-windows-with-mingw

DGLEW_BUILD o src glew.o c src glew.c gcc shared Wl soname libglew32.dll Wl out implib lib libglew32.dll.a o lib glew32.dll.. DGLEW_BUILD o src glew.mx.o c src glew.c gcc shared Wl soname libglew32mx.dll Wl out implib lib libglew32mx.dll.a o lib glew32mx.dll..