1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Source: bear
Priority: optional
Section: devel
Maintainer: Sebastian Ramacher <sramacher@debian.org>
Build-Depends:
debhelper (>= 10),
cmake,
python,
python3,
scons,
libqt4-dev,
dh-python
Standards-Version: 3.9.8
Homepage: https://github.com/rizsotto/Bear
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/bear.git
Vcs-Git: https://anonscm.debian.org/git/collab-maint/bear.git
Package: bear
Architecture: any
Depends:
${shlibs:Depends},
${misc:Depends},
${python3:Depends}
Description: generate compilation database for Clang tooling
Bear records the flags passed to the compiler for each translation unit and
stores them in a JSON file. This file can be used by Clang's tooling interface
and programs like clang-check to process a translation unit.
.
cmake supports the generation of JSON compilation databases out of the box.
For any other build system that does not support this, Bear can be used
instead to intercept the invocation of the compiler.
|