mirror of https://github.com/YosysHQ/yosys.git
Only call proc_share_dirname() in techmap when necessary
This commit is contained in:
parent
58367cd87a
commit
c642dd0b3e
|
@ -829,14 +829,13 @@ struct TechmapPass : public Pass {
|
|||
int max_iter = -1;
|
||||
|
||||
size_t argidx;
|
||||
std::string proc_share_path = proc_share_dirname();
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
if (args[argidx] == "-map" && argidx+1 < args.size()) {
|
||||
map_files.push_back(args[++argidx]);
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-share_map" && argidx+1 < args.size()) {
|
||||
map_files.push_back(proc_share_path + args[++argidx]);
|
||||
map_files.push_back(proc_share_dirname() + args[++argidx]);
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-max_iter" && argidx+1 < args.size()) {
|
||||
|
|
Loading…
Reference in New Issue