aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWade Fife <wade.fife@ettus.com>2020-03-28 16:47:32 -0500
committerWade Fife <wade.fife@ettus.com>2020-04-14 16:37:43 -0500
commiteed2d2348cab7dc786673f0649373809d04027d5 (patch)
treecedcf15ce40c05c269c3d87047f62a340677d90f
parent8c6eabcd86f8e5d1e25cfed441e1acf1a0b6759a (diff)
downloaduhd-eed2d2348cab7dc786673f0649373809d04027d5.tar.gz
uhd-eed2d2348cab7dc786673f0649373809d04027d5.tar.bz2
uhd-eed2d2348cab7dc786673f0649373809d04027d5.zip
fpga: tools: Add -voptargs=+acc to ModelSim GUI
Add -voptargs=+acc to the default options when running vsim. This option enables debug command access to objects in the design, which is generally needed for debugging in the GUI.
-rw-r--r--fpga/usrp3/tools/make/viv_simulator.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga/usrp3/tools/make/viv_simulator.mak b/fpga/usrp3/tools/make/viv_simulator.mak
index 2d91d5209..41b58bf8c 100644
--- a/fpga/usrp3/tools/make/viv_simulator.mak
+++ b/fpga/usrp3/tools/make/viv_simulator.mak
@@ -71,7 +71,7 @@ MODELSIM_PROJ_DIR ?= modelsim_proj
# Check if we want to load the ModelSim GUI
ifeq ($(GUI), 1)
- MODELSIM_ARGS_L +=
+ MODELSIM_ARGS_L += -voptargs=+acc
else
MODELSIM_ARGS_L += -c -do "run -all; quit -f"
endif