-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamically linked library #142
Comments
libtool turned out to be problematic in the past on MacOS. So I've not touched lib/Makefile.am for a long time. |
@bkmgit, in case switching the build system is an option, the included CMake scripts define both static and shared (dynamic) versions of the libraries. |
@bkmgit It's been a while, maybe too long... Libtool isn't available on MacOS by default. Needs Homebrew or Macports to install. That's unfortunate. On the other hand, there is ranlib. Also the |
Using ranlib seems like it would work. |
I don't think that ranlib alone would work, since it is part of libtool and libtool causes problems on MacOS. I checked but MacOS still has the libtool issues. So it won't be possible on MacOS to create dynamic libraries using autotools with libtool/ranlib. Using autotools causes problems when dynamic libraries are enabled with |
Consider modifying the configure script to allow creation of either, or both statically and dynamically linked libraries.
The text was updated successfully, but these errors were encountered: