mstorsjo / llvm-mingw

An LLVM/Clang/LLD based mingw-w64 toolchain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Package requests for libclang.dll

xccfcpd opened this issue · comments

Thank you for providing such a great tooling chain! However, in practice, you will find that the file libclang.dll is missing. Could you please add this file in the next version release. Thank you very much!

How would you use this, given that there are no devel files (aka include files, import libraries) to go along with it?

How would you use this, given that there are no devel files (aka include files, import libraries) to go along with it?

Thanks for reply. Here's add-on package named "EasyClangComplete" for SublimeText. It's parsed code based on LLVM tooling chain(UCRT mode) through libclang.dll.

They seems to be using the upstream Clang distribution, which are built with the MSVC ABI. This is not compatible with this toolchain, which uses the Itanium ABI.

Thanks for the clarification.