From 68d7596adf6d4d5416db3eeaad5ad935df00d8ab Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Thu, 14 May 2020 07:18:56 +0800 Subject: [PATCH] Fix compile error when using bison 3.6.1 (#2320) Workaround issue: bison 3.6.1 generated unexpected nested-comment Closes: https://github.com/verilator/verilator/issues/2320 Signed-off-by: Huang Rui --- docs/CONTRIBUTORS | 1 + src/bisonpre | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/CONTRIBUTORS b/docs/CONTRIBUTORS index cfd5e5f0e..05ee52ac1 100644 --- a/docs/CONTRIBUTORS +++ b/docs/CONTRIBUTORS @@ -14,6 +14,7 @@ Garrett Smith Geza Lore Gianfranco Costamagna Howard Su +Huang Rui Iztok Jeras James Hanlon Jeremy Bennett diff --git a/src/bisonpre b/src/bisonpre index 395979575..48cf26eb3 100755 --- a/src/bisonpre +++ b/src/bisonpre @@ -212,6 +212,8 @@ sub clean_output { $line =~ s!\(YY_\("!(YY_((char*)"!g; # Fix bison 2.3 glr-parser warning about yyerrorloc.YYTYPE::yydummy uninit $line =~ s!(YYLTYPE yyerrloc;)!$1 yyerrloc.yydummy=0;/*bisonpre*/!g; + # Fix bison 3.6.1 unexpected nested-comment + $line =~ s!/\* "/\*.*\*/" \*/!!g; $fh->write($line); } $fh->close;