sebastiansturm

Results 78 comments of sebastiansturm

thanks for resolving this so quickly @yyoncho and @ericdallo! I'll just add that the same issue came up previously (https://github.com/emacs-lsp/lsp-mode/issues/3029), in response to which a PR to the lua language...

Hi, this is the complete cmake output: ``` cmake -DCMAKE_INSTALL_PREFIX\=/Users/sebastian/.emacs.d/irony/ /Users/sebastian/.emacs.d/elpa/irony-20141206.459/server && cmake --build . --use-stderr --config Release --target install -- The C compiler identification is AppleClang 6.0.0.6000056 -- The...

this is the output I get from `otool -L`: ``` irony-server: /usr/local/opt/llvm/lib/libclang.dylib (compatibility version 1.0.0, current version 0.0.0) /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current...

Hi, I haven't yet tried out the changed cmake file, but I'll do soon. > Would it be better if irony was looking at /usr/local/opt/ instead of /usr/local/Cellar? Unfortunately I'm...

Hm, changing the FindLibClang file produced the same results as before. If I add a path to the `llvm35`-bundled libclang, i.e., ``` list(APPEND libclang_llvm_header_search_paths # LLVM Debian/Ubuntu nightly packages: http://llvm.org/apt/...

Hi, the cmake flags you suggested produce the following build log, ``` -*- mode: compilation; default-directory: "~/.emacs.d/irony/build/" -*- Compilation started at Sun Dec 7 20:45:35 cmake -DCMAKE_PREFIX_PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON -DCMAKE_INSTALL_PREFIX\=/Users/sebastian/.emacs.d/irony/ /Users/sebastian/.emacs.d/elpa/irony-20141207.919/server...

I forgot to add, the path `/usr/local/Cellar/llvm35/3.5.0/lib/llvm-3.5/include` contains `clang-c` headers.

on the other hand, the Xcode command line tools also include `svn` by default, and I have read that the libclang API is supposed to be stable. Would it be...

It's using the include files supplied with `llvm` (not `llvm35`), and the Xcode version of libclang: ``` //The path to the directory that contains clang-c/Index.h LIBCLANG_INCLUDE_DIR:PATH=/usr/local/Cellar/llvm/3.5.0/include ... //The file that...

I do have `llvm-config-3.5`, bundled with the `llvm35` package, and linked to `/usr/local/bin`. There is also `llvm-config`, included in the `llvm` path but hidden in what Homebrew calls the "Cellar"....