惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - Franky
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
S
SegmentFault 最新的问题
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队
B
Blog RSS Feed
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 司徒正美
The Cloudflare Blog
博客园_首页
博客园 - 聂微东
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Static Analysis in C: How to Use Clangd, Clang-Tidy & Cpp...
Valerius Petrini · 2026-06-26 · via DEV Community

Valerius Petrini

Originally published on my personal website.

If you've ever worked in a C codebase, you've probably been frustrated with the lack of tooling that is available to you, especially compared to more modern languages like TypeScript. The truth is, C does have capable tooling support, but they aren't as well-known as other tools are, and most don't come automatically out of the box. This article aims to show you how to set up three C tools to improve code quality and your editor experience: clangd, clang-tidy, and cppcheck.

Why use these tools?

Before explaining why to use these tools, it's important to explain what they are. clang-tidy and cppcheck are static analyzers, meaning they check your code for bugs before they happen and suggest how to make your code cleaner through formatting and style suggestions. clang-tidy focuses on linting (performing style checks) and bug-finding, while cppcheck mainly focuses on bug-finding.

clangd is a language server tool that acts as an Intellisense provider, allowing for autocomplete, hover information, and error information. One of the most helpful features of clangd is its ability to highlight warnings found by clang-tidy, so you can see them in your IDE while developing.

Installation

This article assumes you have a C project and are using CMake to build it, and you are using VSCode as your IDE.

  1. Install clang and cppcheck using your package manager (apt, MSYS2, etc.).
  2. Install clangd by LLVM from the extension store.
  3. Disable any other language providers for C. If you have the C/C++ extension from Microsoft, clangd will prompt you to disable it.
  4. Add these flags to your settings (Ctrl + ,) for clangd to enable clang-tidy support, indexing, and detailed completion styles:
"clangd.arguments": [
    "--compile-commands-dir=build",
    "--clang-tidy",
    "--background-index",
    "--completion-style=detailed"
]

Make sure you change build to the output directory for CMake

Setting up clangd to work with clang-tidy

Although in the last step we enabled clang-tidy support for clangd, we still need to do a few more things before we can get warning highlights.

The first step is to create a .clang-tidy file in your root directory:

Checks: >
  *
HeaderFilterRegex: '^(src|include)/.*'
FormatStyle: file

If your source files live in a place other than src and include, change the name under HeaderFilterRegex.

This file is essentially a configuration for clang-tidy, and clangd will use it to provide warning highlights for you. Before it does that though, add this line to your CMakeLists.txt:

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

This is necessary for clangd to see how your project is compiled, telling it what files to check and where your include directories are.

To make sure that these compile commands are created, run your CMake build command. You should see a compile_commands.json file in your CMake output directory.

As you start looking through your C files, one thing you may notice is there are a lot of warnings you don't care about, conflict with one another, or don't go with your coding style. The good thing is, we can disable certain warnings in our .clang-tidy file. Look for the warning name (it should be in parethesis or brackets), add a - to the front, and add it to the Checks list. Some suggested warnings to supress are shown below:

Checks: >
  *,
  -altera-*,
  -llvmlibc-restrict-system-libc-headers,
  -misc-no-recursion

Of course, the * at the beginning enables ALL warnings, so you may want to only enable certain warnings:

Checks: >
  -*,
  modernize-*,
  performance-*,
  readability-*

clang-tidy will read in checks sequentially, so -* will disable all checks then the next three lines will enable all checks within the modernize, performance, and readability categories

You can find a full list of checks on the clang-tidy website.

Fully setting up clang-tidy

While clangd does handle most errors, it doesn't show every warning, so we'll need to set up clang-tidy to run in our terminal to get every warning project-wide.

The good thing is that we already set up our .clang-tidy file, meaning whatever rules we put in there will be shared between clangd and clang-tidy.

First, add this to your CMakeLists.txt after your add_executable call:

find_program(CLANG_TIDY_EXE NAMES clang-tidy)

if(CLANG_TIDY_EXE)
    message(STATUS "clang-tidy found: ${CLANG_TIDY_EXE}")
    set(CLANG_TIDY_COMMAND
        ${CLANG_TIDY_EXE}
        -quiet
        --config-file=${CMAKE_SOURCE_DIR}/.clang-tidy
        -p ${CMAKE_BINARY_DIR}
    )
    add_custom_target(clang-tidy
        # Replace SOURCES with the variable containing all your source files
        # It should be the same SOURCES passed into add_executable
        COMMAND ${CLANG_TIDY_COMMAND} ${SOURCES}
        COMMENT "Running clang-tidy..."
        USES_TERMINAL
        VERBATIM
    )

    # Replace EXEC_NAME with the name of your executable
    # This makes it so that when you run your code, 
    # it executes clang-tidy on every file that is being recompiled
    # You can remove this line if you'd rather have direct control
    # over when warnings show up
    set_target_properties(${EXEC_NAME} PROPERTIES C_CLANG_TIDY "${CLANG_TIDY_COMMAND}")
else()
    message(STATUS "clang-tidy not found")
endif()

Now you can run cmake --build build/ --target clang-tidy in your terminal to analyze every file. Make sure to change build to whatever your CMake output folder is.

USES_TERMINAL makes it so that when we run the clang-tidy target, it writes its output to the terminal live, instead of CMake printing it all when it's finished

Setting up cppcheck

To set up cppcheck, we again have to use add_custom_target that runs the command:

find_program(CPPCHECK_EXE NAMES cppcheck)

if(CPPCHECK_EXE)
    message(STATUS "cppcheck found: ${CPPCHECK_EXE}")
    add_custom_target(cppcheck
        COMMAND ${CPPCHECK_EXE}
            --project=${CMAKE_BINARY_DIR}/compile_commands.json
            # Change these to match your project directory
            --file-filter=${CMAKE_SOURCE_DIR}/src/*
            --file-filter=${CMAKE_SOURCE_DIR}/include/*
            # These are all 6 categories. You can remove them as needed
            --enable=error,warning,style,performance,portability,information
            --suppress=missingIncludeSystem
            --inline-suppr
            --error-exitcode=1
            --quiet
            # enables multithreading (4 threads)
            -j4
        COMMENT "Running cppcheck..."
        USES_TERMINAL
        VERBATIM
    )
else()
    message(STATUS "cppcheck not found")
endif()

Additionally, since cppcheck uses compile_commands.json, make sure you set CMAKE_EXPORT_COMPILE_COMMANDS to ON earlier.

After that, you can run cppcheck on every file by running cmake --build build/ --target cppcheck in your terminal. As always, change build/ to whatever your CMake output folder is.

Next Steps

If you want to do some more tinkering with these tools:

  1. Try setting up run-clang-tidy (comes builtin to LLVM) to support multithreading and drastically reduce the time it takes to check for warnings.
  2. Set up a CI pipeline to auto run clang-tidy and cppcheck on every PR.

Final Thoughts

Setting up these three tools will help tremendously in making both your editor experience and C codebase better. Always be sure to run both cppcheck and clang-tidy regularly to make sure you catch style mistakes and bugs often.

Happy Coding!