diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-09-18 11:55:57 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-09-18 11:55:57 +0200 |
commit | 452d4bf741cd46176c1dfbd232dd560e436b9f15 (patch) | |
tree | e7e9d351e2417a387265e9af5456b43334d6dfb1 | |
parent | 51e1295d79f373133bd48ace30a76add0d294f02 (diff) | |
download | yosys-452d4bf741cd46176c1dfbd232dd560e436b9f15.tar.gz yosys-452d4bf741cd46176c1dfbd232dd560e436b9f15.tar.bz2 yosys-452d4bf741cd46176c1dfbd232dd560e436b9f15.zip |
Added support for "dfflibmap -liberty +/..."
-rw-r--r-- | passes/techmap/dfflibmap.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/techmap/dfflibmap.cc b/passes/techmap/dfflibmap.cc index 64131c1a8..693651bfd 100644 --- a/passes/techmap/dfflibmap.cc +++ b/passes/techmap/dfflibmap.cc @@ -491,6 +491,7 @@ struct DfflibmapPass : public Pass { std::string arg = args[argidx]; if (arg == "-liberty" && argidx+1 < args.size()) { liberty_file = args[++argidx]; + rewrite_filename(liberty_file); continue; } if (arg == "-prepare") { |