rogual / neovim-dot-app

Mac OS X GUI for Neovim
1.13k stars 62 forks source link

cannot install neovim.app with home-brew #164

Closed njdavis closed 9 years ago

njdavis commented 9 years ago

when I try to install neovim.app, I get the following error:

ld: library not found for -lmsgpack

I have tried to reinstall the xCode command line tools and that did not help.

rogual commented 9 years ago

try running xcode-select --install and trying again?

njdavis commented 9 years ago

it says that: xcode-select: error: command line tools are already installed, use "Software Update" to install updates

there don't seem to be any updates.

rogual commented 9 years ago

OK, so either msgpack isn't installed or the compiler isn't seeing it. Try doing:

ls -l /usr/local/lib/libmsgpack.a

If the file isn't there, then you need to reinstall msgpack:

brew uninstall msgpack brew install msgpack

If it is there, something weird is happening.

njdavis commented 9 years ago

Thanks. The install worked, however, now I cannot open .cpp or .h files with the application.

I get the following error: Neovim cannot open files in the "C Header" format.

When I try opening it with neovim in the terminal, it works.

rogual commented 9 years ago

How are you trying to open the file?

njdavis commented 9 years ago

from finder, it opens when i try to open it within the app

rogual commented 9 years ago

That's a known issue and should be fixed when https://github.com/rogual/neovim-dot-app/pull/127 gets merged.