-
Notifications
You must be signed in to change notification settings - Fork 99
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
irony-server-install fail on OS X 10.11 /w XCode 8 #341
Comments
Maybe it helps You: cmake -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON <args...> If you're running OS X, you can also use install_name_tool to explicitly tell irony-server where an appropriate version of libclang.dylib lives. For example, Homebrew (with brew install llvm --with-clang) will install a libclang.dylib library at /usr/local/opt/llvm/lib/libclang.dylib; you can instruct irony-server to use this with something like: install_name_tool -change @rpath/libclang.dylib /usr/local/opt/llvm/lib/libclang.dylib irony-server" From README.md |
I think XCode provides libclang.dylib but does provide This was discussed from here: #138 (comment) to here #138 (comment) It's possible things have changed, in this case let me know. |
@Sarcasm Thanks for the link I followed the instructions in this comment and it solved my problems #138 (comment) Perhaps you want to add this to the readme for macOS users? I mean not everybody wants to install a full copy of llvm-clang when it already comes with Xcode, especially when the space llvm-clang requires is not negligible. Thanks! |
I added this to the wiki: Feel free to improve. Thank you |
I understand that most people install llvm with brew on macOS with the --with-clang flag, but I checked Xcode and it already comes with libclang. Can I make use of that? It's stored in
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib
The text was updated successfully, but these errors were encountered: