How to use CMAKE_EXPORT_COMPILE_COMMANDS?

61,557

Solution 1

I suggest setting

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

in the CMakeList.txt

Solution 2

As of CMake 3.5 the CMAKE_EXPORT_COMPILE_COMMANDS option is supported by the Ninja and Makefiles generators.

That means to generate a JSON compile database one has to select a generator that supports it.

For example on UNIX just:

cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 /path/to/src

(as it uses the makefile generator there, by default)

Otherwise you can explicitly specify a generator like this:

cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 /path/to/src -G Ninja

Or:

cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 /path/to/src -G 'Unix Makefiles'

Or another makefiles variant that your cmake supports - a list of supported generators is included in the output of cmake --help.

Note that the compile database JSON file is generated at cmake execution time - not at compile time. Also, with recent clang versions (e.g. clang >= 3.8), clang-modernize was merged into clang-tidy.

Solution 3

I too was not able to get to work on the Visual Studio generator. It did, however, work using the "NMake Makefiles" generator.

C:\work\build>cmake -G "NMake Makefiles"  -DCMAKE_EXPORT_COMPILE_COMMANDS=ON  ..
Share:
61,557

Related videos on Youtube

dzada
Author by

dzada

Updated on August 11, 2021

Comments

  • dzada
    dzada over 2 years

    I've been trying to use clang-modernize with CMAKE_EXPORT_COMPILE_COMMANDS as recommended in the help of this tool.

    With this option cmake generates a JSON file containing compile info like include paths (see also).

    This variable is accepted on the command line of cmake, but cmake --help-variable CMAKE_EXPORT_COMPILE_COMMANDS doesn't work (which is coherent with this mailing list posting).

    Has someone any idea on how to use it?

    I could also use it with cppcheck.

    Some more info

    I've discovered on a clang developer forum that this cmake feature is not available on all generators. This might change in the future, in the mean time my question remains and I will try too see what happen if I use other generators than Visual Studio.

  • RichieHH
    RichieHH about 5 years
    late to the show but for those also googling this, that would never have worked - it has to be set prior to the invocation of cmake. A 2nd cmake invocation would see it work however.
  • sunny moon
    sunny moon over 4 years
  • Marnix
    Marnix over 4 years
    @HörmannHH Thanks for mentioning this. I had exactly this issue where compile_commands.json was never generated the first time, but only after the second configure.
  • Marnix
    Marnix over 4 years
    Continuing my search I found this issue gitlab.kitware.com/cmake/cmake/issues/16588. I was able to make it happen in CMakeLists.txt if I put it right after my project() specification.
  • Das_Geek
    Das_Geek almost 3 years
    In the (now closed) issue linked by @Marnix, there was another cause for this issue that came from CMake overwriting the variable, even if project() was called before the variable was set. This was resolved for CMake 3.18+; for older versions, a workaround can be implemented by modifying the set() command to set(CMAKE_EXPORT_COMPILE_COMMANDS ON CACHE INTERNAL "").