jeanguyomarch / eovim

The Enlightened Neovim
https://github.com/jeanguyomarch/eovim/wiki
MIT License
193 stars 3 forks source link

Executable cannot find its installed libraries on 64bit OS X #42

Closed unquabain closed 4 years ago

unquabain commented 5 years ago

Following the installation instructions, there are no errors. In the install step in particular, I see the line:

-- Installing: /usr/local/lib64/libeovim.dylib

However, when I attempt to run eovim I get the following error:

3 build $ eovim
dyld: Library not loaded: @rpath/libeovim.dylib
  Referenced from: /usr/local/bin/eovim
  Reason: image not found
Abort trap: 6
jeanguyomarch commented 5 years ago

Maybe the installation directory of the library (<prefix>/lib64) is not suitable for macOS. Can you please try (after cleaning the previous installation with make uninstall - maybe as root) using an alternate library directory? For instance, to use <prefix>/lib write pass the following to the cmake command:

-DLIB_INSTALL_DIR=lib
jeanguyomarch commented 4 years ago

As plugins have been removed, there is no libdir anymore.