ClangCheck.rst 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ==========
  2. ClangCheck
  3. ==========
  4. `ClangCheck` is a small wrapper around :doc:`LibTooling` which can be used to
  5. do basic error checking and AST dumping.
  6. .. code-block:: console
  7. $ cat <<EOF > snippet.cc
  8. > void f() {
  9. > int a = 0
  10. > }
  11. > EOF
  12. $ ~/clang/build/bin/clang-check snippet.cc -ast-dump --
  13. Processing: /Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc.
  14. /Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc:2:12: error: expected ';' at end of
  15. declaration
  16. int a = 0
  17. ^
  18. ;
  19. (TranslationUnitDecl 0x7ff3a3029ed0 <<invalid sloc>>
  20. (TypedefDecl 0x7ff3a302a410 <<invalid sloc>> __int128_t '__int128')
  21. (TypedefDecl 0x7ff3a302a470 <<invalid sloc>> __uint128_t 'unsigned __int128')
  22. (TypedefDecl 0x7ff3a302a830 <<invalid sloc>> __builtin_va_list '__va_list_tag [1]')
  23. (FunctionDecl 0x7ff3a302a8d0 </Users/danieljasper/clang/llvm/tools/clang/docs/snippet.cc:1:1, line:3:1> f 'void (void)'
  24. (CompoundStmt 0x7ff3a302aa10 <line:1:10, line:3:1>
  25. (DeclStmt 0x7ff3a302a9f8 <line:2:3, line:3:1>
  26. (VarDecl 0x7ff3a302a980 <line:2:3, col:11> a 'int'
  27. (IntegerLiteral 0x7ff3a302a9d8 <col:11> 'int' 0))))))
  28. 1 error generated.
  29. Error while processing snippet.cc.
  30. The '--' at the end is important as it prevents :program:`clang-check` from
  31. searching for a compilation database. For more information on how to setup and
  32. use :program:`clang-check` in a project, see :doc:`HowToSetupToolingForLLVM`.