| 70 | |
| 71 | |
| 72 | === Incompatible version of bison === |
| 73 | {{{ |
| 74 | bison -d -p kjsyy JavaScriptCore/kjs/grammar.y -o grammar.tab.c && mv grammar.tab.c tmp/grammar.cpp && mv grammar.tab.h tmp/grammar.h |
| 75 | JavaScriptCore/kjs/grammar.y:364.3-366.9: type clash (`node' `') on default action |
| 76 | JavaScriptCore/kjs/grammar.y:366.10: parse error, unexpected ":", expecting ";" or "|" |
| 77 | }}} |
| 78 | |
| 79 | This error is caused by having an incompatible version of `bison` installed. The single reported case of this error occurred with `bison` 1.75, and was resolved by updating to `bison` 2.3. |