From e4aaebf2c9a25478b5cbbb1b66e0a323e633b0b5 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Thu, 20 Feb 2020 14:03:06 -0800 Subject: [PATCH] abc9: use "source -x" for script files --- passes/techmap/abc9_exe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/techmap/abc9_exe.cc b/passes/techmap/abc9_exe.cc index 0bf547921..b2710446e 100644 --- a/passes/techmap/abc9_exe.cc +++ b/passes/techmap/abc9_exe.cc @@ -191,7 +191,7 @@ void abc9_module(RTLIL::Design *design, std::string script_file, std::string exe else abc9_script += script_file[i]; } else - abc9_script += stringf("source %s", script_file.c_str()); + abc9_script += stringf("source -x %s", script_file.c_str()); } else if (!lut_costs.empty() || !lut_file.empty()) { abc9_script += fast_mode ? RTLIL::constpad.at("abc9.script.default.fast").substr(1,std::string::npos) : RTLIL::constpad.at("abc9.script.default").substr(1,std::string::npos);