I want to create a shared library with autoconf. However, I want the shared library to have the extension ".so" and not start with "lib". Basically, I want to create a plugin that will be loaded using dlopen. Is there an easy way to do this?
When I try to create a .so file with autoconf, I get this error:
plugins / Makefile.am: 3: scan_bulk.la' is not a standard libtool library name
plugins/Makefile.am:3: did you meanlibscan_bulk.la '?
source
share