Actions
How to Install Veritool¶
Install Icarus Verilog:¶
- Download and unpack one of the releases available here.
- Go inside the directory and configure the package:
configure --prefix=<ICARUS-INSTALLATION-DIRECTORY>
. - Compile and install the package:
make all install
. - Set the home variable:
export ICARUS_HOME=<ICARUS-INSTALLATION-DIRECTORY>
.
Install Veritool under Linux:¶
- Download and unpack one of the releases available here.
- Go inside the directory and configure the package:
sh configure --prefix=<VERITOOL-INSTALLATION-DIRECTORY>
. - Compile and install the package:
make all install
. - Add
<VERITOOL-INSTALLATION-DIRECTORY>/bin
toPATH
.
Install Veritool under Windows using MinGW:¶
- Download and unpack one of the releases available here.
- Go inside the directory and configure the package:
sh configure --prefix=<VERITOOL-INSTALLATION-DIRECTORY>
. - Modify src/veritool/Makefile.in by adding
-livl
toveritool_tgt_LDFLAGS
and modifying fromveritool.tgt$(EXEEXT): $(veritool_tgt_OBJECTS) $(veritool_tgt_DEPENDENCIES) @rm -f veritool.tgt$(EXEEXT) $(veritool_tgt_LINK) $(veritool_tgt_OBJECTS) $(veritool_tgt_LDADD) $(LIBS)
toveritool.tgt$(EXEEXT): $(veritool_tgt_OBJECTS) $(veritool_tgt_DEPENDENCIES) @rm -f veritool.tgt$(EXEEXT) $(veritool_tgt_LINK) $(veritool_tgt_OBJECTS) $(veritool_tgt_LDFLAGS) $(veritool_tgt_LDADD) $(LIBS)
and fromveritool_tgt_LINK = $(CCLD) $(veritool_tgt_CFLAGS) $(CFLAGS) \ $(veritool_tgt_LDFLAGS) $(LDFLAGS) -o $@
toveritool_tgt_LINK = $(CCLD) $(veritool_tgt_CFLAGS) $(CFLAGS) \ $(LDFLAGS) -o $@
- Compile and install the package:
make all install
. - Add
<VERITOOL-INSTALLATION-DIRECTORY>/bin
toPATH
.
How to Run Veritool¶
- Install Veritool.
- Run
veritool --help
.
Updated by Alexander Kamkin about 4 years ago ยท 24 revisions