diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-04-24 06:10:46 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-04-24 06:10:46 +0200 |
commit | 8836b83f3878d93d19aa716ac65e30a591178c27 (patch) | |
tree | 99783e30b2a5c98d33e6a40000501fec3a44d054 /testsuite/gna/issue1233 | |
parent | 4198d9f7a3b56129f862a219ad9becaa2c684486 (diff) | |
download | ghdl-8836b83f3878d93d19aa716ac65e30a591178c27.tar.gz ghdl-8836b83f3878d93d19aa716ac65e30a591178c27.tar.bz2 ghdl-8836b83f3878d93d19aa716ac65e30a591178c27.zip |
testsuite: add add_vpi_path utility.
Diffstat (limited to 'testsuite/gna/issue1233')
-rwxr-xr-x | testsuite/gna/issue1233/testsuite.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/testsuite/gna/issue1233/testsuite.sh b/testsuite/gna/issue1233/testsuite.sh index 056c85789..210e01058 100755 --- a/testsuite/gna/issue1233/testsuite.sh +++ b/testsuite/gna/issue1233/testsuite.sh @@ -6,12 +6,7 @@ analyze adder.vhdl elab adder if ghdl_has_feature adder vpi; then - if [ "$OS" = "Windows_NT" ]; then - # Need to put the directory containing libghdlvpi.dll in the path. - vpi_lib=`$GHDL --vpi-library-dir | sed -e 's!\\\\!/!g' -e 's!^C:!/C!g'` - echo vpi_lib: $vpi_lib - PATH="$PATH:$vpi_lib" - fi + add_vpi_path $GHDL --vpi-compile -v gcc -c vpi_plugin.c $GHDL --vpi-link -v gcc -o vpi_plugin.vpi vpi_plugin.o |