3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 07:27:58 +00:00

Use boost xpressive for gcc 4.8

This commit is contained in:
Miodrag Milanovic 2020-03-13 14:58:35 +01:00
parent 746629f18d
commit 7c54e61979
4 changed files with 39 additions and 51 deletions

View file

@ -413,22 +413,13 @@ int main(int argc, char **argv)
scriptfile_tcl = true;
break;
case 'W':
log_warn_regexes.push_back(std::regex(optarg,
std::regex_constants::nosubs |
std::regex_constants::optimize |
std::regex_constants::egrep));
log_warn_regexes.push_back(REGEX_COMPILE(optarg));
break;
case 'w':
log_nowarn_regexes.push_back(std::regex(optarg,
std::regex_constants::nosubs |
std::regex_constants::optimize |
std::regex_constants::egrep));
log_nowarn_regexes.push_back(REGEX_COMPILE(optarg));
break;
case 'e':
log_werror_regexes.push_back(std::regex(optarg,
std::regex_constants::nosubs |
std::regex_constants::optimize |
std::regex_constants::egrep));
log_werror_regexes.push_back(REGEX_COMPILE(optarg));
break;
case 'D':
vlog_defines.push_back(optarg);