cppcheck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cppcheck: command not found
or when using sudo you get the following error message
sudo: cppcheck: command not found
Solutions to cppcheck: command not found
How To Fix cppcheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cppcheck is provided by cppcheck package.
cppcheck is:
Cppcheck is a command-line tool that tries to detect bugs that your C/C++ compiler doesn’t see. It is versatile, and can check non-standard code including various compiler extensions, inline assembly code, etc. Its internal preprocessor can handle includes, macros, and several preprocessor commands. While Cppcheck is highly configurable, you can start using it just by giving it a path to the source code.
It includes checks for:
- pointers to out-of-scope auto variables;
- assignment of auto variables to an effective parameter of a function;
- out-of-bounds errors in arrays and STL;
- missing class constructors;
- variables not initialized by a constructor;
- use of memset, memcpy, etcetera on a class;
- non-virtual destructors for base classes;
- operator= not returning a constant reference to itself;
- use of deprecated functions (mktemp, gets, scanf);
- exceptions thrown in destructors;
- memory leaks in class or function variables;
- C-style pointer cast in C++ code;
- redundant if;
- misuse of the strtol or sprintf functions;
- unsigned division or division by zero;
- unused functions and struct members;
- passing parameters by value;
- misuse of signed char variables;
- unusual pointer arithmetic (such as “abc” + ’d’);
- dereferenced null pointers;
- incomplete statements;
- misuse of iterators when iterating through a container;
- dereferencing of erased iterators;
- use of invalidated vector iterators/pointers;
This package contains the command-line interface for cppcheck.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cppcheck
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cppcheck.
sudo apt -y install cppcheck
Or if you have aptitude installed you can use the following command.
sudo aptitude install cppcheck
Summary
In this tutorial we learn how to fix cppcheck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.