Disabled the per-default dumping of ILANG code
This commit is contained in:
parent
8d37d1e08b
commit
91b94ef57b
1 changed files with 6 additions and 1 deletions
|
@ -89,10 +89,15 @@ static void run_backend(std::string filename, std::string command, RTLIL::Design
|
|||
command = "ilang";
|
||||
else if (filename == "-")
|
||||
command = "ilang";
|
||||
else if (filename.empty())
|
||||
return;
|
||||
else
|
||||
log_error("Can't guess frontend for input file `%s' (missing -f option)!\n", filename.c_str());
|
||||
}
|
||||
|
||||
if (filename.empty())
|
||||
filename = "-";
|
||||
|
||||
if (filename == "-") {
|
||||
log("\n-- Writing to stdout using backend `%s' --\n", command.c_str());
|
||||
} else {
|
||||
|
@ -226,7 +231,7 @@ int main(int argc, char **argv)
|
|||
std::string backend_command = "auto";
|
||||
std::vector<std::string> passes_commands;
|
||||
std::vector<void*> loaded_modules;
|
||||
std::string output_filename = "-";
|
||||
std::string output_filename = "";
|
||||
std::string scriptfile = "";
|
||||
bool got_output_filename = false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue