Fix `-vlgincdir` for xst.
The command line is of the form; ``` -vlgincdir {"path1" "path2"} ``` Fixes the following error; ``` WARNING:Xst:3164 - Option "-vlgincdir" found multiple times in the command line. Only the first occurence is considered. ```
This commit is contained in:
parent
0ade06c0f0
commit
8b2abc7e89
|
@ -58,8 +58,11 @@ def _build_xst_files(device, sources, vincpaths, build_name, xst_opt):
|
||||||
-ofn {build_name}.ngc
|
-ofn {build_name}.ngc
|
||||||
-p {device}
|
-p {device}
|
||||||
""".format(build_name=build_name, xst_opt=xst_opt, device=device)
|
""".format(build_name=build_name, xst_opt=xst_opt, device=device)
|
||||||
for path in vincpaths:
|
if vincpaths:
|
||||||
xst_contents += "-vlgincdir " + tools.cygpath(path) + "\n"
|
xst_contents += "-vlgincdir {"
|
||||||
|
for path in vincpaths:
|
||||||
|
xst_contents += tools.cygpath(path) + " "
|
||||||
|
xst_contents += "}"
|
||||||
tools.write_to_file(build_name + ".xst", xst_contents)
|
tools.write_to_file(build_name + ".xst", xst_contents)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue