Package Release Info

bison-3.8.2-160000.2.2

Update Info: Base Release
Available in Package Hub : 16.0

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

bison-32bit

Change Logs

* Sun Jul 31 2022 coolo@suse.com
- Remove profiling support. Bison's performance is not really key to
  rebuild cycles, but as bison is a bootstrap package, it's own build
  time can hurt - especially if it's not reproducible.
* Wed Nov 17 2021 andreas.stieger@gmx.de
- disable tests and profiling using tests on armv6l (boo#1192737)
* Sat Oct 02 2021 andreas.stieger@gmx.de
- GNU bison 3.8.2
  * in Yacc compatibility mode (options -y/--yacc) Bison now
    generates prototypes for yyerror and yylex if POSIXLY_CORRECT
    is set
  * -g/--graph now generates a *.gv file by default, instead of *.dot
  * Support for the YYPRINT macro is removed
  * The "lalr1.d" skeleton is now officially part of Bison
  * Option -H, --header and directive %header supersede
  - -defines and %defines, respectively
  * --html generates HTML reports directly in one step
  * A new C++ native GLR parser
  * Counterexamples now show the rule numbers, and always show ε
    for rules with an empty right-hand side
  * Support for Lookahead correction (LAC) in Java
  * User actions may now use YYNOMEM to abort the current parse
    with memory exhaustion
  * Support for custom error messages and location print macros
* Fri Mar 12 2021 dmueller@suse.com
- move COPYING file into licenses subdirectory
* Tue Mar 09 2021 andreas.stieger@gmx.de
- GNU bison 3.7.6:
  * Fix reused push parsers
  * Fix table generation
* Tue Feb 09 2021 mpluskal@suse.com
- Run tests in parallel
* Sun Jan 24 2021 dmueller@suse.com
- use https for sources
* Sun Jan 24 2021 andreas.stieger@gmx.de
- GNU bison 3.7.5:
  * Fix crashes in counterexample generation
  * Fix Table Generation generating incorrect parsers when there
    are many useless tokens
  * GLR parsers now support %merge together with
    api.value.type=union
  * C++ parsers use noexcept in more places
  * Generated parsers avoid some warnings about signedness issues
  * C-language parsers now avoid warnings from pedantic clang
* Sat Nov 14 2020 andreas.stieger@gmx.de
- GNU bison 3.7.4:
  * In Yacc mode, YYEMPTY token was missing its macro definiton
  * Fix lalr1.cc skeleton internal assertions
  * Make macro YY_ASSERT obey the api.prefix %define variable
  * Work around C++ limitations for long assertions
  * The YYBISON macro in generated "regular C parsers" is now
    defined to the version of Bison as an integer
* Tue Oct 13 2020 andreas.stieger@gmx.de
- GNU bison 3.7.3:
  * Fix concurrent build issues
  * The bison executable is no longer linked uselessly against
    libreadline
  * Fix incorrect use of yytname in glr.cc