Closed thesps closed 2 years ago
I found that setting @sim.library = 'xil_defaultlib' in the dep file has no effect, the default simulation library remains work.
@sim.library = 'xil_defaultlib'
work
I think the issue is that this line:
SimLibrary = lDepFileParser.settings.get('{_toolset}.library', 'work')
should rather be:
SimLibrary = lDepFileParser.settings.get(f'{_toolset}.library', 'work')
(missing f for f-string formatting).
f
Ouch. Used to work, I wonder where I lost that f...
Fixed in thea/bugfix_simlibrary, hopefully
thea/bugfix_simlibrary
I finally got around to trying out thea/bugfix_simlibrary, and it's fixed the issue, thanks!
I found that setting
@sim.library = 'xil_defaultlib'
in the dep file has no effect, the default simulation library remainswork
.I think the issue is that this line:
should rather be:
(missing
f
for f-string formatting).