Merge pull request #1039 from jordancarlin/dev

Set MTI_VCO_MODE for all Questa runs, not just with lockstep
This commit is contained in:
Rose Thompson 2024-10-29 14:13:13 -05:00 committed by GitHub
commit 55cffcbc98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,8 @@ prefix = ""
if (args.lockstep or args.lockstepverbose or args.fcov or args.fcovimp): if (args.lockstep or args.lockstepverbose or args.fcov or args.fcovimp):
if (args.sim == "questa" or args.sim == "vcs"): if (args.sim == "questa" or args.sim == "vcs"):
prefix = "IMPERAS_TOOLS=" + WALLY + "/config/"+args.config+"/imperas.ic" prefix = "IMPERAS_TOOLS=" + WALLY + "/config/"+args.config+"/imperas.ic"
if (args.sim == "questa"): # Force Questa to use 64-bit mode, sometimes it defaults to 32-bit even on 64-bit machines
if (args.sim == "questa"):
prefix = "MTI_VCO_MODE=64 " + prefix prefix = "MTI_VCO_MODE=64 " + prefix
if (args.lockstep or args.lockstepverbose): if (args.lockstep or args.lockstepverbose):