-
Notifications
You must be signed in to change notification settings - Fork 259
Project Setup
ccls typically indexes an entire project. In order for this to work properly,
ccls
needs to be able to obtain the source file list and their compilation
command lines.
There are two main ways this happens:
- Provide
compile_commands.json
at the project root - Provide a
.ccls
file. It is a line-based text file describing compiler flags. Recursively listed source files (headers excluded) will be indexed.
If neither exists, then when ccls starts it will not index anything: instead it will wait for LSP clients to open files and index only those files.
Guillaume Papin(@Sarcasm) has a thorough article about compilation databases.
Generally this file is not checked into source control, but rather is
generated by the build system. This means it's best to generate it in a new
project before starting the ccls
server in that project.
Because this file is auto-generated it's not easy to customize. As a result
it's possible to provide both compile_commands.json
and .ccls
in the
same project and have the .ccls
configuration enhance the options from
compile_commands.json
.
If your compile_commands.json
is not kept in the project root, set the
initialization option compilationDatabaseDirectory
to an alternative
directory containing compile_commands.json
.
% cmake -H. -BDebug -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=YES
% ln -s Debug/compile_commands.json
Caveat on Windows: CMake dumps Windows shell command line directly into command
, depends on how ccls was built, it may confuse this field as command line from a POSIX shell, in which Windows path separator '\' is a escape character. You can use jq to convert such entries to use arguments
which does not have this issue:
jq '[.[] | {directory: .directory, file: .file, arguments: .command | split(" ") | map(select(length > 0)) | map(sub("\\\\\""; "\""; "g"))}]' < compile_commands.json
Bear is a tool that generates a compilation database for clang tooling. It can be used for any project based on Makefile
.
bear make
# generates compile_commands.json
scan-build is a python package that can generate a compilation database for clang tooling (uses Bear as a backend). This too can be used for any project based on a Makefile
.
intercept-build make all # generates compile_commands.json from the `make all` ruleset
# Format: ninja -t compdb rule_names... > compile_commands.json
ninja -C out/Release -t compdb cxx cc > compile_commands.json
Load the clang_compilation_database
tool in your wscript:
def configure(conf):
conf.load('clang_compilation_database')
./waf configure build
ln -s build/compile_commands.json
buck build :helloworld#compilation-database
ln -s $(buck targets --show-output :helloworld#compilation-database | cut -d ' ' -f 2)
xcpretty is a 3rd party tool that can parse the output of xcodebuild
and generate a compile_commands.
xcodebuild | xcpretty -r json-compilation-database --output compile_commands.json
If the initialization option "compilationDatabaseCommand"
is set, the command will be executed by ccls to provide the JSON compilation database. ccls will read its stdout rather than read compile_commands.json
. This may be useful when ccls cannot parse the compile_commands.json
correctly (e.g. MSVC cl.exe, Intel C++ Compiler options)
ccls shell script wrapper:
#!/bin/zsh
/path/to/Release/ccls --init='{"compilationDatabaseCommand":"/tmp/c/x"}' "$@"
/tmp/c/x
:
#!/bin/zsh
# cat >> /tmp/initialization-options # stdin is initialization options
print '[{"arguments":["c++","-c","a.cc"],"directory":"/tmp/c","file":"a.cc"}]'
Suppose the project is at /tmp/c
, /tmp/c/x /tmp/c
will be executed with stdin=initializationOptions and the stdout should be a JSON compilation database.
An example to scrub Intel C++ Compiler options (or, even easier, check out clang.excludeArgs
in the Initialization options):
#!/usr/bin/env python3
import json
import os
import sys
with open(os.path.join(sys.argv[1], 'compile_commands.json')) as f:
db = json.load(f)
for entry in db:
args = entry['arguments']
try:
# Intel C++ Compiler option that is unknown to clang
args.remove('-xHost')
except ValueError:
pass
json.dump(db, sys.stdout)
.ccls
is a line-based text file at the project root. Its specifies compiler
flags needed to properly index your code: -I
-D
etc. The first line
specifies the compiler driver (usually clang
), while each subsequent lines
specifies one argument to be added to the compiler command line.
No whitespace splitting is performed on the argument, thus -I foo
cannot be
used (use -Ifoo
or -I\nfoo
for example).
Subdirectories of the project can also contain .ccls
files, if needed, to
specify compiler flags specific to those directories.
A line may optionally start with one or more %
directives, which specialize
the argument on that line.
Available directives include:
By default .ccls
compiler flags are applied only to files not listed in
compile_commands.json
. If this directive appears first in .ccls
, the
compiler driver must be omitted. After compile_commands.json
is parsed, the
rest of the .ccls
arguments will be appended to the compiler flags for
files found in compile_commands.json
.
This argument should be added only when parsing C (%c
), C++ (%cpp
),
Objective-C (%objective-c
), or Objective-C++ (%objective-c++
) files.
This argument should be added only when parsing CUDA files. If you want an option to be added
to both CUDA and regular C++ files, write %cpp %cu -DA
.
This argument should be added only when indexing C header files (%h
: *.h
) or C++
header files (%hpp
: *.hh
*.hpp
). Note, *.h
files are considered as C, not C++.
You may add these lines to make every *.h
parsed as C++:
%h -x
%h c++-header
Note, if your project has both C and C++ files, a.h
's flags may be inferred from a C file and thus parsed as C.
You may run into parsing errors like unknown type name 'class'
.
Unless %compile_commands.json
is used, you must specify a "compiler driver" as the first line of your .ccls
file.
-
clang
defaults to GCCMode (gcc). It correctly treats.c
files as C and.cpp
files as C++. -
clang++
defaults to GXXMode (g++). It treats a.c
file as C++ and issues a warning.
clang a.cc
and clang++ a.cc
are different, but the difference is only related to linking (what default runtime libraries are passed) and is not relevant for the frontend actions ccls performs.
So for ccls use cases, just stick with clang
.
clang
%c -std=c11
%cpp -std=c++2a
%h %hpp --include=Global.h
-Iinc
-DMACRO
*.h *.hh *.hpp
files will be parsed with extra --include=Global.h
%compile_commands.json
%c -std=c11
%cpp -std=c++14
%c %cpp -pthread
%h %hpp --include=Global.h
-Iinc
It appends flags so clang
should not be used.
See https://github.com/MaskRay/ccls/issues/107.
If the compiler driver is a GCC cross-compiler, --target=
may be required. Suppose arm-linux-gnueabi-gcc -march=armv7a
is used, add a --target=
:
%compile_commands.json
--target=armv7a-linux-gnueabi
Otherwise clang will error: unknown target CPU 'armv7a'
.
See https://github.com/MaskRay/ccls/issues/476.
%compile_commands.json
-target
armv7-linux-gnueabi
-D__ICCARM__
-U__GNUC__
-U__clang__
-isystem../Config/exec/arm/inc/c