Skip to content

Commit 39daac0

Browse files
committed
iverilog-vpi.sh: Put IVCXX in quotes to allow to pass arguments
`IVCXX` which contains the C++ compiler that will be invoked when building an vpi module might contain additional arguments that get passed to the compiler. E.g. such as the C++ version (`-std=c++11`). For this to work properly `IVCXX` needs to be put in quotes. This fixes intermittent CI failures for the MacOS target. Signed-off-by: Lars-Peter Clausen <[email protected]>
1 parent b1e602d commit 39daac0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iverilog-vpi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# These are the variables used for compiling files
2222
CC="@IVCC@"
23-
CXX=@IVCXX@
23+
CXX="@IVCXX@"
2424
CFLAGS="@PIC@ @IVCFLAGS@ -I@INCLUDEDIR@"
2525
CXXFLAGS="@PIC@ @IVCXXFLAGS@ -I@INCLUDEDIR@"
2626

0 commit comments

Comments
 (0)