Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a basic application with syntax highlighting and code completion powered by Clang. I know I can do this with the Clang libraries, but the documentation is so extensive that I don't know where to start.

Are there any tutorials on how to do this? Thank you in advance :)


No lmgtfy please, I have already done that.

share|improve this question

4 Answers

up vote 21 down vote accepted

I've found as great materials for beginning with libclang, following presentation:

"libclang: Thinking Beyond the Compiler" by Doug Gregor, Apple Inc. Slides, Video

Read them carefully, so they will guide you step by step thought library basics, showing how to obtain useful information.

share|improve this answer

You might want to check the sources of clang-complete, a completion plugin for vim that is listed on the LLVM projects page: https://github.com/Rip-Rip/clang_complete

share|improve this answer

EDIT: Looks like libindex has been removed.

Index.h seems to be the replacement. Some usage and explanation.

share|improve this answer

Yes, there is, Writing Your Own Toy Compiler Using Flex, Bison and LLVM.

share|improve this answer
CLANG is a front-end for LLVM, so may this close how it work to you. – SIFE Apr 7 '11 at 20:59
2  
Actually, LLVM only brings code generation abilities (though they are extremely good). For indexing and code completion, you could use CLang without LLVM. – Matthieu M. Apr 8 '11 at 13:48
Sorry, I miss understood you, I thought you want creat a CLANG compiler like, so best recommendation I see is to read source code of any compiler uses clang libraries with reading documentation. – SIFE Apr 8 '11 at 16:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.