ipbus/ipbb

Setting sim.library

Closed this issue · 3 comments

I found that setting @sim.library = 'xil_defaultlib' in the dep file has no effect, the default simulation library remains 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).

Ouch. Used to work, I wonder where I lost that f...

Fixed in thea/bugfix_simlibrary, hopefully

I finally got around to trying out thea/bugfix_simlibrary, and it's fixed the issue, thanks!