Skip to content

Commit

Permalink
Allow custom vsim if $VSIM is defined
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jan 25, 2022
1 parent 1fc3389 commit b35e7b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gapy/configs/platforms/rtl.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"rtl": {
"commands": {
"shell": {
"executable": "vsim",
"executable": "${VSIM:-vsim}",
"args_eval": [
"\"-64\"",
"\"-c\"",
Expand All @@ -21,7 +21,7 @@
]
},
"gui": {
"executable": "vsim",
"executable": "${VSIM:-vsim}",
"args_eval": [
"\"-64\"",
"\"-do 'source \" + os.environ.get(\"VSIM_PATH\") + \"/tcl_files/config/run_and_exit.tcl'\"",
Expand Down

0 comments on commit b35e7b2

Please sign in to comment.