Daan De Meyer

Results 309 comments of Daan De Meyer

Typescript does not pick up the sugar-extended types by default. Perhaps these could be put in a separate @jonathanhefner types package so Typescript can pick them up by default? EDIT:...

The compile_commands.json generated by CMake should work without any problems. Are all includes broken? Also, what platform are you on?

By default cquery only checks the root directory for compile_commands.json. Did you move the CMake generated compile_commands.json there from your build directory? I'm not familiar with the vim client but...

Not really sure what could be the cause here. Can you try hardcoding the url that works for you in `DownloadAndExtractClang.cmake` (line 79)?

Can you compare the hashes manually? I executed `wget https://releases.llvm.org/6.0.1/clang%2bllvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz` and `sha256sum clang+llvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz` and compared it with the corresponding hash in `clang_archive_hashes` and they matched for me

If you can somehow start cquery with "-v 1" it'll output detailed logs which might help to find the problem. I have no experience with Sublime Text so I can't...

https://github.com/kronihias/mcfx/issues/1 This issue seems similar and was fixed by changing the linking order although I'm not sure what we'd have to change in CMake. I do remember @bstaletic mentioning a...

Does it work if you add the pthread flag explicitly? (`set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")` should do the trick

Try changing the project call to `project(cquery LANGUAGES C CXX)`

I'm not super familiar with cygwin. Does it use the same program binaries that a normal Windows installation uses?