c++ Programming Glossary: lstatic
Building a shared library using gcc [closed] http://stackoverflow.com/questions/3588476/building-a-shared-library-using-gcc o shared.o g g ggdb fPIC rdynamic shared L .. static lstatic o libshared.so FIXED The correct commands are g g ggdb fPIC.. fPIC rdynamic shared L.. static o libshared.so shared.o lstatic I tried these commands with and without rdynamic as well as.. ~ libtest shared g g ggdb fPIC rdynamic shared L .. static lstatic o libshared.so # See just below for FIXED version serg@rodent..
|