mirror of https://github.com/YosysHQ/yosys.git
Add a few more filename rewrites
This now allows a full pipeline to work, something such as: yosys -p "synth_ecp5 -json ~/work/fpga/prjtrellis/examples/ecp5_evn/blinky.v" Otherwise, you will get something along the lines of: ERROR: Can't open output file `~/work/fpga/prjtrellis/examples/ecp5_evn/blinky.v' for writing: No such file or directory Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
parent
3b1e5264d8
commit
8767ec3fbd
|
@ -545,6 +545,7 @@ void Backend::extra_args(std::ostream *&f, std::string &filename, std::vector<st
|
||||||
}
|
}
|
||||||
|
|
||||||
filename = arg;
|
filename = arg;
|
||||||
|
rewrite_filename(filename);
|
||||||
std::ofstream *ff = new std::ofstream;
|
std::ofstream *ff = new std::ofstream;
|
||||||
ff->open(filename.c_str(), std::ofstream::trunc);
|
ff->open(filename.c_str(), std::ofstream::trunc);
|
||||||
yosys_output_files.insert(filename);
|
yosys_output_files.insert(filename);
|
||||||
|
|
|
@ -659,6 +659,7 @@ struct SatHelper
|
||||||
|
|
||||||
void dump_model_to_vcd(std::string vcd_file_name)
|
void dump_model_to_vcd(std::string vcd_file_name)
|
||||||
{
|
{
|
||||||
|
rewrite_filename(vcd_file_name);
|
||||||
FILE *f = fopen(vcd_file_name.c_str(), "w");
|
FILE *f = fopen(vcd_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", vcd_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", vcd_file_name.c_str(), strerror(errno));
|
||||||
|
@ -761,6 +762,7 @@ struct SatHelper
|
||||||
|
|
||||||
void dump_model_to_json(std::string json_file_name)
|
void dump_model_to_json(std::string json_file_name)
|
||||||
{
|
{
|
||||||
|
rewrite_filename(json_file_name);
|
||||||
FILE *f = fopen(json_file_name.c_str(), "w");
|
FILE *f = fopen(json_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", json_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", json_file_name.c_str(), strerror(errno));
|
||||||
|
@ -1505,6 +1507,7 @@ struct SatPass : public Pass {
|
||||||
{
|
{
|
||||||
if (!cnf_file_name.empty())
|
if (!cnf_file_name.empty())
|
||||||
{
|
{
|
||||||
|
rewrite_filename(cnf_file_name);
|
||||||
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
||||||
|
@ -1608,6 +1611,7 @@ struct SatPass : public Pass {
|
||||||
|
|
||||||
if (!cnf_file_name.empty())
|
if (!cnf_file_name.empty())
|
||||||
{
|
{
|
||||||
|
rewrite_filename(cnf_file_name);
|
||||||
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
||||||
|
|
Loading…
Reference in New Issue