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:
parent
adf9a7703f
commit
cff2b97678
|
|
@ -52,10 +52,12 @@ extern FILE *extFileOpen();
|
||||||
* See extract.h for the bit flags that may be set in the following.
|
* See extract.h for the bit flags that may be set in the following.
|
||||||
* If any are set, the corresponding warnings get generated, leaving
|
* If any are set, the corresponding warnings get generated, leaving
|
||||||
* feedback messages. If this word is zero, only errors are
|
* 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 ExtDoWarn = EXTWARN_DUP|EXTWARN_FETS;
|
||||||
int ExtOptions = EXT_DOALL|EXT_DOLABELCHECK;
|
int ExtOptions = EXT_DOALL|EXT_DOLABELCHECK|EXT_DOALIASES;
|
||||||
|
|
||||||
/* --------------------------- Global data ---------------------------- */
|
/* --------------------------- Global data ---------------------------- */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue