Fixes required to support Quartus in Windows

parent d1712873
......@@ -42,7 +42,7 @@ class ToolQuartus(ToolSyn):
TOOL_INFO = {
'name': 'Quartus',
'id': 'quartus',
'windows_bin': 'quartus',
'windows_bin': 'quartus_sh -t',
'linux_bin': 'quartus_sh -t',
'project_ext': 'qpf'}
......
......@@ -142,7 +142,8 @@ def compose(path, base=None):
"""Get the relative path composition of the provided path"""
if base is None:
base = os.getcwd()
return os.path.relpath(os.path.abspath(os.path.join(base, path)))
return os.path.relpath(os.path.abspath(
os.path.join(base, path))).replace(slash_char(), "/")
def search_for_manifest(search_path):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment