ibex/tool_requirements.py
Pascal Nasahl b6d8b9f075 Update verilator version
To be consistent between projects, this PR updates the Verilator
version to 4.210, which is also used by OpenTitan. The reason for
this change is that in #2129 Verilator linting issues occured
that did not occur in OpenTitan.

Closes #2131.

Signed-off-by: Pascal Nasahl <nasahlpa@lowrisc.org>
2024-01-19 17:04:40 +00:00

18 lines
527 B
Python

# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# Version requirements for various tools. Checked by tooling (e.g. fusesoc),
# and inserted into the Sphinx-generated documentation.
__TOOL_REQUIREMENTS__ = {
'verilator': '4.210',
'edalize': '0.2.0',
'vcs': {
'min_version': '2020.03-SP2',
'as_needed': True
},
'vivado': {
'min_version': '2020.2',
'as_needed': True
},
}