build/xilinx/ise: Fix XST flow
This commit is contained in:
parent
4fef89af53
commit
5796f30b18
|
@ -215,8 +215,11 @@ bitgen {bitgen_opt} {build_name}.ncd {build_name}.bit{fail_stmt}
|
||||||
e_output.write(e_file)
|
e_output.write(e_file)
|
||||||
self.build_io_constraints()
|
self.build_io_constraints()
|
||||||
|
|
||||||
|
if sys.platform == "win32" or sys.platform == "cygwin":
|
||||||
command = shell + [build_script_file]
|
shell = ["cmd", "/c"]
|
||||||
|
else:
|
||||||
|
shell = ["bash"]
|
||||||
|
command = shell + [script]
|
||||||
|
|
||||||
if which("ise") is None and os.getenv("LITEX_ENV_ISE", False) == False:
|
if which("ise") is None and os.getenv("LITEX_ENV_ISE", False) == False:
|
||||||
msg = "Unable to find or source ISE toolchain, please either:\n"
|
msg = "Unable to find or source ISE toolchain, please either:\n"
|
||||||
|
|
Loading…
Reference in New Issue