mibuild/xilinx/ise: fix source and set source to False by default on Windows (tools supposed to be in the PATH)

This commit is contained in:
Florent Kermarrec 2015-06-19 00:52:39 +02:00
parent 743a5f6ea9
commit 7d8f4d1009
1 changed files with 8 additions and 4 deletions

View File

@ -107,7 +107,7 @@ def _run_ise(build_name, ise_path, source, mode, ngdbuild_opt,
script_ext = ".sh"
shell = ["bash"]
build_script_contents = "# Autogenerated by mibuild\nset -e\n"
if source:
settings = common.settings(ise_path, ver, "ISE_DS")
build_script_contents += source_cmd + settings + "\n"
if mode == "edif":
@ -145,6 +145,10 @@ def _default_ise_path():
return "/opt/Xilinx"
def _default_source():
return False if sys.platform == "win32" else True
class XilinxISEToolchain:
def __init__(self):
self.xst_opt = """-ifmt MIXED
@ -158,7 +162,7 @@ class XilinxISEToolchain:
self.ise_commands = ""
def build(self, platform, fragment, build_dir="build", build_name="top",
ise_path=_default_ise_path(), source=True, run=True, mode="xst"):
ise_path=_default_ise_path(), source=_default_source(), run=True, mode="xst"):
tools.mkdir_noerror(build_dir)
os.chdir(build_dir)