From 33ab2efa83454e5b4f90c2156863b47adb0c56ba Mon Sep 17 00:00:00 2001 From: Jalali <110232072+AyoubJalali@users.noreply.github.com> Date: Wed, 26 Jun 2024 21:02:46 +0000 Subject: [PATCH] Makefile : passing the tandem_enable value into UVM testbench (#2287) --- verif/sim/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/verif/sim/Makefile b/verif/sim/Makefile index 31d9c42daa..a82b55b0e9 100644 --- a/verif/sim/Makefile +++ b/verif/sim/Makefile @@ -257,11 +257,11 @@ ifneq ($(DEBUG),) # If RTL DEBUG support requested endif ifneq ($(SPIKE_TANDEM),) -ALL_SIMV_UVM_FLAGS += +scoreboard_enabled=1 -ALL_XRUN_SIMV_UVM_FLAGS += +scoreboard_enabled=1 +ALL_SIMV_UVM_FLAGS += +tandem_enabled=1 +ALL_XRUN_SIMV_UVM_FLAGS += +tandem_enabled=1 else -ALL_SIMV_UVM_FLAGS += +scoreboard_enabled=0 -ALL_XRUN_SIMV_UVM_FLAGS += +scoreboard_enabled=0 +ALL_SIMV_UVM_FLAGS += +tandem_enabled=0 +ALL_XRUN_SIMV_UVM_FLAGS += +tandem_enabled=0 endif ### VCS UVM rules