What is libpython3.so compared with libpython3.5m.so built from python 3.5.2 source?
问题 In my application, I use boost_python and python 3.5.2. All built from source in Ubuntu 14. When I built Python 3.5.2 from source with --with-shared options in Ubuntu, I got libpython3.so (7.6kB) and libpython3.5m.so (12MB). I assume the big one is the real one and the small one might be something forwarding calls to the real interfaces. As boost_python might assume the client to link against python (https://svn.boost.org/trac/boost/ticket/2615), I linked libpython3.so with my application.