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 <lars@metafoo.de>
This commit is contained in:
parent
b1e602d27c
commit
39daac0d40
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
# These are the variables used for compiling files
|
# These are the variables used for compiling files
|
||||||
CC="@IVCC@"
|
CC="@IVCC@"
|
||||||
CXX=@IVCXX@
|
CXX="@IVCXX@"
|
||||||
CFLAGS="@PIC@ @IVCFLAGS@ -I@INCLUDEDIR@"
|
CFLAGS="@PIC@ @IVCFLAGS@ -I@INCLUDEDIR@"
|
||||||
CXXFLAGS="@PIC@ @IVCXXFLAGS@ -I@INCLUDEDIR@"
|
CXXFLAGS="@PIC@ @IVCXXFLAGS@ -I@INCLUDEDIR@"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue