mirror of https://github.com/KLayout/klayout.git
Merge pull request #1883 from KLayout/issue-1869
Fixed issue #1869 by adding a new option, -to or --top-output to strmxor
This commit is contained in:
commit
6c82177dfa
|
|
@ -360,7 +360,7 @@ BD_PUBLIC int strmxor (int argc, char *argv[])
|
|||
generic_reader_options_b.set_group_prefix ("Input B");
|
||||
|
||||
std::string infile_a, infile_b, output;
|
||||
std::string top_a, top_b;
|
||||
std::string top_a, top_b, top_output;
|
||||
bool dont_summarize_missing_layers = false;
|
||||
bool silent = false;
|
||||
bool no_summary = false;
|
||||
|
|
@ -393,6 +393,10 @@ BD_PUBLIC int strmxor (int argc, char *argv[])
|
|||
<< tl::arg ("-tb|--top-b=name", &top_b, "Specifies the top cell for the second layout",
|
||||
"See --top-a for details."
|
||||
)
|
||||
<< tl::arg ("-to|--top-output=name", &top_output, "Specifies the top cell for the output layout",
|
||||
"This option is only used if an output layout is given. It will specify the name of top cell to use there. "
|
||||
"If not specified, KLayout uses the top cell name of the first layout or the one given with --top-a."
|
||||
)
|
||||
<< tl::arg ("-u|--deep", &deep, "Deep (hierarchical mode)",
|
||||
"Enables hierarchical XOR (experimental). In this mode, tiling is not supported "
|
||||
"and the tiling arguments are ignored."
|
||||
|
|
@ -518,7 +522,7 @@ BD_PUBLIC int strmxor (int argc, char *argv[])
|
|||
|
||||
if (! output.empty ()) {
|
||||
output_layout.reset (new db::Layout ());
|
||||
output_top = output_layout->add_cell ("XOR");
|
||||
output_top = output_layout->add_cell (top_output.empty () ? top_a.c_str () : top_output.c_str ());
|
||||
}
|
||||
|
||||
std::map<std::pair<int, db::LayerProperties>, ResultDescriptor> results;
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue