Build a shared library #13
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
At the moment only a static library is built. If packaged for end-user only, building a static library seems a bit pointless. Make a shared library, too. And configurable which is built: Shared and/or static.
Building a shared library fails on Ubuntu. The ncurses C++ library is only available as a static library. Which was not compiled with position independent code (i.e. using
-fPIC
).