You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ":" as separator create some issue for windows absolute path utilization .
test case:
--include unisim:%XILINX_VIVADO%/data/vhdl/src/unisims
expands into:
C:\Xilinx\Vivado\2019.1\data\vhdl\src\unisims
where C wrongly threated as unisim library version.
So version should be specified explicitly in this case as workaround.
The text was updated successfully, but these errors were encountered:
I've never tried vhdeps on Windows, so honestly I'm surprised it works at all. I can see why the colons would break on Windows, but if I understand correctly you can already solve it by doing something of the form --include 93:unisim:%XILINX_VIVADO%/data/vhdl/src/unisims? Or am I missing something?
To be more Windows-compatible a different separator than : should be used, I guess, but it's quite difficult to find one that isn't already in use for other things.
Using ":" as separator create some issue for windows absolute path utilization .
test case:
--include unisim:%XILINX_VIVADO%/data/vhdl/src/unisims
expands into:
C:\Xilinx\Vivado\2019.1\data\vhdl\src\unisims
where C wrongly threated as unisim library version.
So version should be specified explicitly in this case as workaround.
The text was updated successfully, but these errors were encountered: