Why is this an issue?

Non-standard libraries or libraries containing known vulnerabilities should not be used.

This list can be updated through the libraries parameter.

How to fix it

Code examples

Noncompliant code example

With the custom value of forbidden libraries: strangelib
use ieee.std_logic_1164.all;
use work.all;
use strangelib.all; -- Noncompliant

Compliant solution

With the custom value of forbidden libraries: strangelib
use ieee.std_logic_1164.all;
use work.all;

Resources

Related rules