From 08473776b28a949027ec8cf2596d8d1b438b979b Mon Sep 17 00:00:00 2001 From: Wade Fife Date: Wed, 9 Jun 2021 13:29:10 -0500 Subject: fpga: tools: Add modelsim.ini to ModelSim calls This adds the MSIM_VIV_COMPLIBDIR environment variable to specify a non-default location for the compilation libraries. This also allows a modelsim.ini other than the one in the ModelSim installation folder to be used. By default, the one in the simulation libraries compilation directory will be used. This can be changed by setting MSIM_MODELSIM_INI to the one you want to use, or set it to an empty string to use the one in the ModelSim installation folder. --- fpga/usrp3/tools/make/viv_simulator.mak | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fpga/usrp3/tools/make') diff --git a/fpga/usrp3/tools/make/viv_simulator.mak b/fpga/usrp3/tools/make/viv_simulator.mak index eaa23adcc..f37cc9626 100644 --- a/fpga/usrp3/tools/make/viv_simulator.mak +++ b/fpga/usrp3/tools/make/viv_simulator.mak @@ -68,6 +68,7 @@ SETUP_AND_LAUNCH_VLINT = \ export VLINT_SVLOG_ARGS="$(SVLOG_ARGS)"; \ export VLINT_VLOG_ARGS="$(VLOG_ARGS)"; \ export VLINT_VHDL_ARGS="$(VHDL_ARGS)"; \ + export VLINT_MODELSIM_INI="$(MODELSIM_INI)"; \ $(TOOLS_DIR)/scripts/launch_vlint.sh # ------------------------------------------------------------------- @@ -82,6 +83,7 @@ SETUP_AND_LAUNCH_MODELSIM = \ export MSIM_ARGS="$(MODELSIM_ARGS)"; \ export MSIM_LIBS="$(MODELSIM_LIBS)"; \ export MSIM_MODE=$(VIVADO_MODE); \ + export MSIM_MODELSIM_INI="$(MODELSIM_INI)"; \ $(TOOLS_DIR)/scripts/launch_modelsim.sh .SECONDEXPANSION: -- cgit v1.2.3