The gen-bison-parser option generates a more efficient parser
based on bison. To add this option we need to make sure our
grammar is LR(1), which seems to be the case, and that bison's
version is greater or equal to 3.7.4.
This commit adds the gen-bison-parser option to KOMPILE_OPTS
should bison's version fulfill the version requirement above.
The
gen-bison-parser
option generates a more efficient parser based onbison
. To add this option we need to make sure our grammar is LR(1), which seems to be the case, and that bison's version is greater or equal to 3.7.4.This commit adds the
gen-bison-parser
option to KOMPILE_OPTS should bison's version fulfill the version requirement above.