3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-13 01:16:16 +00:00

Added "yosys -W regex"

This commit is contained in:
Clifford Wolf 2016-12-22 23:41:44 +01:00
parent f144adec58
commit a0dff87a57
3 changed files with 44 additions and 2 deletions

View file

@ -23,6 +23,7 @@
#define LOG_H
#include <time.h>
#include <regex>
#ifndef _WIN32
# include <sys/time.h>
@ -48,6 +49,7 @@ struct log_cmd_error_exception { };
extern std::vector<FILE*> log_files;
extern std::vector<std::ostream*> log_streams;
extern std::map<std::string, std::set<std::string>> log_hdump;
extern std::vector<std::regex> log_warn_regexes;
extern bool log_hdump_all;
extern FILE *log_errfile;
extern SHA1 *log_hasher;