[CWB] Failure to install developer version

Stefan Evert stefanML at collocations.de
Sat May 2 07:53:59 CEST 2015


> On 2 May 2015, at 07:23, Xiaoyan Tang <2011txy at gmail.com> wrote:

> parser.y: In function ‘yyparse’:
> parser.y:527:124: error: expected ‘;’ before ‘}’ token
>  TranslateExpr:  FROM_SYM CID TO_SYM ID { if (query_lock) {warn_query_lock_violation(); YYABORT;} $$ = do_translate($2, $4) }

Oops, there's a missing semicolon after do_translate(…).

Thanks for the report, has been fixed in the SVN version.  Either check out again, or change the line manually to

	TranslateExpr:  FROM_SYM CID TO_SYM ID { if (query_lock) {warn_query_lock_violation(); YYABORT;} $$ = do_translate($2, $4); }

Strangely, clang on Mac OS X had no problems with this.  It doesn't seem to be that picky about semicolons terminating statements.

Best,
Stefan



More information about the CWB mailing list