Project Setup - MaskRay/ccls GitHub Wiki (2024)

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 compilationcommand lines.

How ccls obtains sources and compilation commands

There are two main ways this happens:

  1. Provide compile_commands.json at the project root
  2. Provide a .ccls file. It is a line-based text file describing compiler flags.Recursively listed source files (headers excluded) will be indexed.Use an empty .ccls to get started (if you don't need specific -I, -D, etc).

If neither exists, then when ccls starts it will not index anything: instead itwill wait for LSP clients to open files and index only those files.

Using build containers

Build containers are usually OCI containers and are often managed by Podman or Docker. Toolchains for building might run in these containers for reproducability.

There are two possibilities:

  1. Execute the container for building only. Use ccls and your editor/IDE on the host.
  2. The build container is running in the background with an installed and running ccls. Furthermore, it is using the host network so that editors/IDEs running on the host can connect.

ccls on the host

If you want to use ccls on the host, a path mapping has to be applied, since paths and compiler versions will most probably differ.Thus, paths of following headers have to be translated to the host system:

  • system and third-party libraries (if those headers do not already exist, install them. E.g., openssl-devel in Linux)
  • the compiler's headers

See following initialization options (ccls --init='...'), which uses build/compile_commands.json already produced in the container:

{ "clang": { "resourceDir": "/usr/lib64/clang/13.0.0", "pathMappings": [ "/project_container/>/project_host/", "/opt/rh/gcc-toolset-10/root>" ], "extraArgs": [ "--gcc-toolchain=/opt/rh/gcc-toolset-10/root/usr" ] }, "compilationDatabaseDirectory": "/project_host/build/"}

resourceDir denotes the directory of the compiler's include files at the host. The compiler version is usually different from the container's. pathMappings substitute directories mounted into the container by the related host directories. If you are using clang(++) with --gcc-toolchain=..., then you have to add the corresponding directory to pathMappings, and add clang.extraArgs. Here the compile_commands.json is in a different directory, and, hence, compilationDatabaseDirectory has to be specified.

Note: On the host, you may have to install additional developer packages (e.g. openssh-devel), which include required headers. If headers are missing, you will see errors in the log file (start ccls by --log-file=/tmp/ccls.log -v=1) or error labels in your editor.

ccls on the container

  1. Install ccls in the container
  2. Execute the container with --network=host (Podman, Docker) such that it continues to run.
  3. Start the build process by attaching to the contatiner and executing the build tool (cmake, make,...)

compile_commands.json

Guillaume Papin(@Sarcasm) has a thorough article about compilation databases.

Generally this file is not checked into source control, but rather isgenerated by the build system. This means it's best to generate it in a newproject before starting the ccls server in that project.

Because this file is auto-generated it's not easy to customize. As a resultit's possible to provide both compile_commands.json and .ccls in thesame project and have the .ccls configuration enhance the options fromcompile_commands.json.

If your compile_commands.json is not kept in the project root, set theinitialization option compilationDatabaseDirectory to an alternativedirectory containing compile_commands.json.

You can use jq to concatenate multiple compile_commands.1.json fragments:

cat a/compile_commands.json b/compile_commands.json | jq '.[]' | jq -s '.' > compile_commands.json

CMake

% 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

In some setups, CMake also puts source file of a translation unit (i.e. *.cpp file) after two dashes --, which means that after it no command-line options can be given. Unfortunately, ccls currently tries to add them just to the end. This modification of above helps:

jq '[.[] | {directory: .directory, file: .file, arguments: .command | split(" ") | map(select(length > 0 and . != "--")) | map(sub("\\\\\""; "\""; "g"))}]' < compile_commands.json

Build EAR

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

compiledb

scan-build

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

Ninja

# Format: ninja -t compdb rule_names... > compile_commands.jsonninja -C out/Release -t compdb cxx cc > compile_commands.json

Meson

meson build # generates compile_commands.json in the `build` directory

GN

# Format: gn gen out/Release --export-compile-commands[=<target_name1,target_name2...>]gn gen out/Release --export-compile-commands=cc

Waf

Load the clang_compilation_database tool in your wscript:

def configure(conf): conf.load('clang_compilation_database')
./waf configure buildln -s build/compile_commands.json

buck

buck build :helloworld#compilation-databaseln -s $(buck targets --show-output :helloworld#compilation-database | cut -d ' ' -f 2)

xcodebuild

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

stdout of an external command

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 optionsprint '[{"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 python3import jsonimport osimport syswith 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 File

.ccls is a line-based text file at the project root. Its specifies compilerflags needed to properly index your code: -I -D etc. The first linespecifies the compiler driver (usually clang), while each subsequent linesspecifies one argument to be added to the compiler command line. Blank and "# comment"lines are ignored.

No whitespace splitting is performed on the argument, thus -I foo cannot beused (use -Ifoo or -I\nfoo for example). If an include path has spaces enter thatas without escaping the spaces. For example, -I/include/path/with a space/to/dir/foo.

Subdirectories of the project can also contain .ccls files, if needed, tospecify compiler flags specific to those directories.

A line may optionally start with one or more % directives, which specializethe argument on that line.

Available directives include:

%compile_commands.json

By default .ccls compiler flags are applied only to files not listed incompile_commands.json. If this directive appears first in .ccls, thecompiler driver must be omitted. After compile_commands.json is parsed, therest of the .ccls arguments will be appended to the compiler flags forfiles found in compile_commands.json.

%c / %cpp / %objective-c / %objective-cpp

This argument should be added only when parsing C (%c), C++ (%cpp),Objective-C (%objective-c), or Objective-C++ (%objective-c++) files.

%cu

This argument should be added only when parsing CUDA files. If you want an option to be addedto both CUDA and regular C++ files, write %cpp %cu -DA.

%h / %hpp

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'.

Compiler driver

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.

.ccls examples

Example A

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

Example B

%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.

Example: -march=armv7a

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'.

IAR Embedded Workbench for Arm

See https://github.com/MaskRay/ccls/issues/476.

%compile_commands.json-targetarmv7-linux-gnueabi-D__ICCARM__-U__GNUC__-U__clang__-isystem../Config/exec/arm/inc/c
Project Setup - MaskRay/ccls GitHub Wiki (2024)
Top Articles
Dr Eric Berg Net Worth 2024 - I am Gold Panda
Dr. Eric Berg Biography, Educational Qualification, Age & Contact Details
Bubble Guppies Who's Gonna Play The Big Bad Wolf Dailymotion
Www.1Tamilmv.cafe
Overton Funeral Home Waterloo Iowa
Skamania Lodge Groupon
Nyu Paralegal Program
Mcfarland Usa 123Movies
Ingles Weekly Ad Lilburn Ga
Practical Magic 123Movies
When is streaming illegal? What you need to know about pirated content
Comcast Xfinity Outage in Kipton, Ohio
Call of Duty: NEXT Event Intel, How to Watch, and Tune In Rewards
Lichtsignale | Spur H0 | Sortiment | Viessmann Modelltechnik GmbH
Fcs Teamehub
Campaign Homecoming Queen Posters
[2024] How to watch Sound of Freedom on Hulu
Shariraye Update
Wordle auf Deutsch - Wordle mit Deutschen Wörtern Spielen
Persona 4 Golden Taotie Fusion Calculator
Best Nail Salon Rome Ga
Youravon Comcom
Average Salary in Philippines in 2024 - Timeular
Kcwi Tv Schedule
Touchless Car Wash Schaumburg
Www.publicsurplus.com Motor Pool
Xfinity Cup Race Today
eugene bicycles - craigslist
What Is a Yurt Tent?
Truvy Back Office Login
Schooology Fcps
Rainfall Map Oklahoma
Insidious 5 Showtimes Near Cinemark Southland Center And Xd
Cars And Trucks Facebook
Mississippi State baseball vs Virginia score, highlights: Bulldogs crumble in the ninth, season ends in NCAA regional
Santa Cruz California Craigslist
Bismarck Mandan Mugshots
About :: Town Of Saugerties
Top 25 E-Commerce Companies Using FedEx
Electric Toothbrush Feature Crossword
Tunica Inmate Roster Release
Eat Like A King Who's On A Budget Copypasta
Dancing Bear - House Party! ID ? Brunette in hardcore action
Rovert Wrestling
Google Flights Missoula
Is TinyZone TV Safe?
Wera13X
Diccionario De Los Sueños Misabueso
Glowforge Forum
Worlds Hardest Game Tyrone
7 National Titles Forum
Latest Posts
Article information

Author: Jonah Leffler

Last Updated:

Views: 6326

Rating: 4.4 / 5 (45 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Jonah Leffler

Birthday: 1997-10-27

Address: 8987 Kieth Ports, Luettgenland, CT 54657-9808

Phone: +2611128251586

Job: Mining Supervisor

Hobby: Worldbuilding, Electronics, Amateur radio, Skiing, Cycling, Jogging, Taxidermy

Introduction: My name is Jonah Leffler, I am a determined, faithful, outstanding, inexpensive, cheerful, determined, smiling person who loves writing and wants to share my knowledge and understanding with you.