cppcheck C/C++ 소스코드 점검툴

By | 2025년 11월 13일
Table of Contents

cppcheck C/C++ 소스코드 점검툴

라이센스

GPL v3 (GNU General Public License v3)

설치

https://cppcheck.sourceforge.io/

지원하는 OS :

  • Windows 64-bit (No XP support)
  • Debian
  • Fedora
  • Mac

실행

# 분석
cppcheck src/ \
    --output-file=report.xml \
    --xml \
    --xml-version=2 \
    --enable=all \
    --std=c++20 \
    --language=c++ \
    --suppress=missingIncludeSystem

# 리포트 생성
cppcheck-htmlreport \
    --file=./report.xml \
    --report-dir=./report

답글 남기기