3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-22 11:07:52 +00:00

verilog: Lower required bison version to 3.6

We're currently on version 3.6 of bison at Google, and Yosys
still correctly builds with it. This should better reflect
the actual requirements rather than an overly restrictive
check. If features from 3.8 are required it seems like bumping
would be appropriate.

Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
This commit is contained in:
Ethan Mahintorabi 2025-08-20 22:58:51 +00:00 committed by Lofty
parent 7f0130efce
commit d10190606c

View file

@ -33,7 +33,7 @@
*
*/
%require "3.8"
%require "3.6"
%language "c++"
%define api.value.type variant
%define api.prefix {frontend_verilog_yy}