commit
1c1c1bd122
|
@ -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)
|
||||||
|
if vincpaths:
|
||||||
|
xst_contents += "-vlgincdir {"
|
||||||
for path in vincpaths:
|
for path in vincpaths:
|
||||||
xst_contents += "-vlgincdir " + tools.cygpath(path) + "\n"
|
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