Specify minimum bison version 3.0+

Yosys works with bison 3.0 (or newer), but not bison 2.7 (the previous
release). Ideally, we would require "3" rather than "3.0" to give a
better error message, but bison 2.3, which still ships with macOS, does
not support major-only version requirements. With this change, building
with an outdated bison yields: `frontends/rtlil/rtlil_parser.y:25.10-14:
require bison 3.0, but have 2.3`.
This commit is contained in:
Zachary Snow 2021-10-01 14:41:11 -06:00 committed by Zachary Snow
parent f9aad606ca
commit fbd70f28f0
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,8 @@
*
*/
%require "3.0"
%{
#include <list>
#include "frontends/rtlil/rtlil_frontend.h"

View File

@ -33,6 +33,8 @@
*
*/
%require "3.0"
%{
#include <list>
#include <stack>