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