Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add opentitan python environment to edaExtraDeps for otbnsim
OTBN block level DV uses a python ISS, which is invoked via DPI code for cosimulation using an RTL simulator. Our current wrappers use 'execl' to launch the python interpreter, and then communicate with the ISS via stdstreams. To allow the EDA tools to see the python interpreter and package set, we need to pass it into their FHSenv wrappers using the 'edaExtraDeps' argument. ``` execl("/usr/bin/env", "/usr/bin/env", "python3", "-u", model_path.c_str(), NULL); ``` Signed-off-by: Harry Callahan <hcallahan@lowrisc.org>
- Loading branch information