The-OpenROAD-Project / OpenROAD-flow-scripts

OpenROAD's scripts implementing an RTL-to-GDS Flow. Documentation at https://openroad-flow-scripts.readthedocs.io/en/latest/
https://theopenroadproject.org/
Other
320 stars 275 forks source link

makefile: make issue now uses SCRIPTS_DIR bundled into .tar.gz #2012

Closed oharboe closed 4 months ago

oharboe commented 4 months ago

The reason scripts are bundled into .tar.gz is to capture the exact state of the scripts and make the bug-report standalone.

This should solve occasional failures to reproduce when ORFS does not match the version that was used when make issue was invoked

Fixed:

$ grep SCRIPTS_DIR vars-mock-array_Element-asap7-base.sh 
export SCRIPTS_DIR="./scripts"

Was wrong, using ORFS scripts, rather than the scripts in the archive:

$ grep SCRIPTS_DIR vars-mock-array_Element-asap7-base.sh 
export SCRIPTS_DIR="${FLOW_HOME}/scripts"