mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-02 17:55:19 +00:00
fix spaces in wsim arguments
This commit is contained in:
parent
bbc815d289
commit
d697b92587
6
bin/wsim
6
bin/wsim
@ -116,9 +116,9 @@ def prepSim(args, ElfFile):
|
||||
defineList.append("+define+USE_TREK_DV")
|
||||
argsList.append(f"+TREK_TBX_FILE={ElfFileNoExtension}.tbx")
|
||||
# Combine into a single string
|
||||
args.args += " ".join(argsList)
|
||||
args.params += " ".join(paramsList)
|
||||
args.define += " ".join(defineList)
|
||||
args.args += " " + " ".join(argsList)
|
||||
args.params += " " + " ".join(paramsList)
|
||||
args.define += " " + " ".join(defineList)
|
||||
flags = " ".join(flagsList)
|
||||
return flags, prefix
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user