diff --git a/openfpga_flow/scripts/run_fpga_task.py b/openfpga_flow/scripts/run_fpga_task.py index c021eebf7..8c7d8f441 100644 --- a/openfpga_flow/scripts/run_fpga_task.py +++ b/openfpga_flow/scripts/run_fpga_task.py @@ -76,6 +76,8 @@ parser.add_argument("--continue_on_fail", action="store_true", help="Exit script parser.add_argument( "--show_thread_logs", action="store_true", help="Skips logs from running thread" ) +parser.add_argument("--default_tool_path", type=str, default=os.path.join(flow_script_dir, os.pardir, "misc", "fpgaflow_default_tool_path.conf"), help="The configuraton file contains paths to tools as well as keywords to be extracted from logs") +parser.add_argument( args = parser.parse_args() # = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = @@ -407,6 +409,7 @@ def generate_each_task_actions(taskname): task_conf=task_conf, ) command += ["--flow_config", curr_task_conf_file] + command += ["--default_tool_path", args.default_tool_path] flow_run_cmd_list.append( { "arch": arch,