The install path on OSX is /usr/local/lib64. This is outside of the normal library search paths and it makes consuming the library as part of other projects more difficult than necessary. I'm having to put in lots of OS specific build code to update the golang bindings for 2.0. I would suggest /usr/lib or /usr/local/lib.
Environment
None
Pull Requests
None
Activity
Michael Penick
February 26, 2016 at 10:32 PM
Tested new CMAKE_INSTALL_LIBDIR logic on Ubuntu 14.04 (64-bit), CentOS 7 (64-bit) and OS X Mavericks.
Changes based on: UseMultiArch.cmake (It can be Googled)
The install path on OSX is
/usr/local/lib64
. This is outside of the normal library search paths and it makes consuming the library as part of other projects more difficult than necessary. I'm having to put in lots of OS specific build code to update the golang bindings for 2.0. I would suggest/usr/lib
or/usr/local/lib
.