diff options
author | Russell Currey <ruscur@russell.cc> | 2017-06-09 14:04:12 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-06-09 14:33:37 +1000 |
commit | 5ed7f51c53fdaea01151d6de18d7b96a9cddee12 (patch) | |
tree | ffb611fddb8eeefef2e638914d88929c97a80f6e /.gitignore | |
parent | bab10aea96277156edc008f7706e0ded61c4f8aa (diff) | |
download | skiboot-5ed7f51c53fdaea01151d6de18d7b96a9cddee12.zip skiboot-5ed7f51c53fdaea01151d6de18d7b96a9cddee12.tar.gz skiboot-5ed7f51c53fdaea01151d6de18d7b96a9cddee12.tar.bz2 |
gitignore: Add compile_commands.json
compile_commands.json is a compilation database used by Clang and some
tagging magic tools. There's a tool called `bear` which intercepts the
compiler and creates this database of how every file is compiled. This
enables my editor to highlight which #ifdef blocks actually get compiled,
for example.
Used by rtags: https://github.com/Andersbakken/rtags
Signed-off-by: Russell Currey <ruscur@russell.cc>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ GTAGS GRTAGS GPATH cscope.out +compile_commands.json asm/asm-offsets.s include/asm-offsets.h version.c |