How To Install splint-data on Ubuntu 18.04

In this tutorial we learn how to install splint-data on Ubuntu 18.04. splint-data is tool for statically checking C programs for bugs - data files

Introduction

In this tutorial we learn how to install splint-data on Ubuntu 18.04.

What is splint-data

splint-data is:

splint is an annotation-assisted lightweight static checker. It is a tool for statically checking C programs for security vulnerabilities and coding mistakes. If additional effort is invested in adding annotations to programs, splint can perform stronger checking.

splint does many of the traditional lint checks including unused declarations, type inconsistencies, use before definition, unreachable code, ignored return values, execution paths with no return, likely infinite loops, and fall through cases. Problems detected by Splint include:

  • Dereferencing a possibly null pointer
  • Using or returning storage that is undefined or not properly defined
  • Type mismatches, with greater precision and flexibility than by C compilers
  • Memory management errors like use of dangling references and memory leaks
  • Inconsistent (with specified interface) global variable modification or use
  • Problematic control flow such as likely infinite loops etc.
  • Buffer overflow vulnerabilities
  • Dangerous macro implementations or invocations
  • Violations of customized naming conventions

This package contains the data files that are necessary to use splint.

There are three methods to install splint-data on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install splint-data Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install splint-data using apt-get by running the following command:

sudo apt-get -y install splint-data

Install splint-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install splint-data using apt by running the following command:

sudo apt -y install splint-data

Install splint-data Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install splint-data using aptitude by running the following command:

sudo aptitude -y install splint-data

How To Uninstall splint-data on Ubuntu 18.04

To uninstall only the splint-data package we can use the following command:

sudo apt-get remove splint-data

Uninstall splint-data And Its Dependencies

To uninstall splint-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove splint-data

Remove splint-data Configurations and Data

To remove splint-data configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge splint-data

Remove splint-data configuration, data, and all of its dependencies

We can use the following command to remove splint-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge splint-data

References

Summary

In this tutorial we learn how to install splint-data package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.