diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-06-08 23:48:19 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-06-08 23:48:19 +0200 |
commit | 6c8a424872ff2925c4c87fce6d9a9c9fc74a0800 (patch) | |
tree | f61b2ab8c2f28b1c5c2b0535cd81937d7d5c2988 /passes/abc/abc.cc | |
parent | 5a592b37398b5cc441471019c56a28e8a6cac680 (diff) | |
download | yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.tar.gz yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.tar.bz2 yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.zip |
Added "make abc" and "make install-abc"
Diffstat (limited to 'passes/abc/abc.cc')
-rw-r--r-- | passes/abc/abc.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/passes/abc/abc.cc b/passes/abc/abc.cc index 9a13a446b..3c6700147 100644 --- a/passes/abc/abc.cc +++ b/passes/abc/abc.cc @@ -630,6 +630,7 @@ struct AbcPass : public Pass { AbcPass() : Pass("abc", "use ABC for technology mapping") { } virtual void help() { + // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| log("\n"); log(" abc [options] [selection]\n"); log("\n"); @@ -637,8 +638,8 @@ struct AbcPass : public Pass { log("library to a target architecture.\n"); log("\n"); log(" -exe <command>\n"); - log(" use the specified command name instead of \"abc\" to execute ABC. This\n"); - log(" can e.g. be used to call a specific version of ABC or a wrapper script.\n"); + log(" use the specified command name instead of \"yosys-abc\" to execute ABC.\n"); + log(" This can e.g. be used to call a specific version of ABC or a wrapper.\n"); log("\n"); log(" -script <file>\n"); log(" use the specified ABC script file instead of the default script.\n"); @@ -664,7 +665,7 @@ struct AbcPass : public Pass { log_header("Executing ABC pass (technology mapping using ABC).\n"); log_push(); - std::string exe_file = "abc"; + std::string exe_file = "yosys-abc"; std::string script_file, liberty_file; bool cleanup = true; |