Changed the default extraction options to include "do aliases" by

default, since not setting it can have unfortunate consequences
for cells that don't declare ports and have multiple conflicting
labels on a node.
This commit is contained in:
Tim Edwards 2023-04-16 12:18:16 -04:00
parent adf9a7703f
commit cff2b97678
2 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
8.3.390
8.3.391

View File

@ -52,10 +52,12 @@ extern FILE *extFileOpen();
* See extract.h for the bit flags that may be set in the following.
* If any are set, the corresponding warnings get generated, leaving
* feedback messages. If this word is zero, only errors are
* reported.
* reported. (Update: "do labelcheck" and "do aliases" have been
* added to the default options because they generally are required
* and would only need to be disabled under exceptional circumstances.)
*/
int ExtDoWarn = EXTWARN_DUP|EXTWARN_FETS;
int ExtOptions = EXT_DOALL|EXT_DOLABELCHECK;
int ExtOptions = EXT_DOALL|EXT_DOLABELCHECK|EXT_DOALIASES;
/* --------------------------- Global data ---------------------------- */