[util] Document minimal requirement for Xilinx Vivado

This is related to lowRISC/Ibex#1425.
This commit is contained in:
Pirmin Vogel 2021-08-25 10:53:07 +02:00
parent 3f9022a16d
commit 14115ea3a8
2 changed files with 6 additions and 2 deletions

View file

@ -8,7 +8,7 @@ The following tools are known to work with the RTL code of Ibex.
Please `file an issue <https://github.com/lowRISC/ibex/issues>`_ if you experience problems with any of the listed tools, or if you have successfully used a tool with Ibex which is not listed here.
- Synopsys Design Compiler
- Xilinx Vivado
- Xilinx Vivado, version |tool_requirements.vivado| and up.
- Verilator, version |tool_requirements.verilator| and up.
- Synopsys VCS, version at least |tool_requirements.vcs|.
- Cadence Incisive/Xcelium

View file

@ -10,5 +10,9 @@ __TOOL_REQUIREMENTS__ = {
'vcs': {
'min_version': '2020.03-SP2',
'as_needed': True
}
},
'vivado': {
'min_version': '2020.2',
'as_needed': True
},
}