mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 22:07:43 -04:00
We don't actually run anything that checks this at the moment, but at least we now have it written down somewhere.
14 lines
444 B
Python
14 lines
444 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',
|
|
'vcs': {
|
|
'min_version': '2020.03-SP2',
|
|
'as_needed': True
|
|
}
|
|
}
|