diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-04 19:45:48 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-05 13:07:45 -0600 |
| commit | d173727c1ed34652613fc046d522a43ac9ef015e (patch) | |
| tree | 5975a608cf41d6893a2400619cc8008cb25b5dc5 | |
| parent | 955599919d88872512f1cc564619de586db43ea1 (diff) | |
Makefile: enable struct tracing
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,6 +14,7 @@ DIST_OBJ_DIR := $(OBJ_DIR)/$(TOP)/dist RBF_OUT_DIR := output_files VERILATOR ?= verilator GENHTML ?= genhtml +COCOTB_CONFIG ?= cocotb-config CROSS_CC := $(CROSS_COMPILE)gcc CROSS_OBJCOPY := $(CROSS_COMPILE)objcopy CROSS_CFLAGS := -O3 -Wall -Wextra -Werror @@ -37,7 +38,7 @@ CC_CPU := -mcpu=arm810 VFLAGS ?= \ --x-assign $(X_MODE) --x-initial $(X_MODE) \ $(if $(ENABLE_THREADS),--threads $(shell nproc)) \ - $(if $(DISABLE_TRACE),,--trace --trace-fst) \ + $(if $(DISABLE_TRACE),,--trace --trace-fst --trace-structs) \ $(if $(DISABLE_COV),,--coverage) RTL_FILES = $(shell find $(RTL_DIR)/ ! -path '$(RTL_DIR)/top/*' -type f -name '*.sv') |
