-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with bison version 3.8.2 on Ubuntu 22.04 #55
Comments
perhaps interisting are the messages in y.output (at the end):
|
This looks the same as issue #54 - I'll try to get some time to work on it this week |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I try to build esnacc from source I ran into a problem with bison:
bison -y -v -t -d -r all -o compiler/core/y.tab.c ./compiler/core/y.tab.y
./compiler/core/y.tab.y: warning: 65 shift/reduce conflicts [-Wconflict-sr]
./compiler/core/y.tab.y: warning: 2 reduce/reduce conflicts [-Wconflict-rr]
./compiler/core/y.tab.y: note: rerun with option '-Wcounterexamples' to generate conflict counterexamples
time limit exceeded: 6.000000
time limit exceeded: 6.000000
....
the process didn't stop and run forever with this time limit exceeded messages. Maybe this is an incompatibility with bison version 3.8.2 because on Ubuntu 20.04 (with bison 3.5.1) it is running correctly (with the warnings but without the exceeded messages).
The text was updated successfully, but these errors were encountered: