mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 21:07:34 -04:00
We need this specific edalize version because recent verilators have got pickier about string parameter passing, breaking the "MultiplierImplementation" parameter. As well as teaching check_tool_requirements.py to get the edalize version from pip3, this patch also does a bit of tidying up, coping better if tool_requirements.py is missing or malformed.
10 lines
360 B
Python
10 lines
360 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.028',
|
|
'edalize': '0.2.0'
|
|
}
|