| Related articles |
|---|
| beginner question about bison Christian.Schlange@heim3.tu-clausthal.de (1998-10-07) |
| Re: beginner question about bison jjan@cs.rug.nl (Beeblebrox) (1998-10-10) |
| Re: beginner question about bison Christian.Schlange@heim3.tu-clausthal.de (1998-10-13) |
| From: | Christian.Schlange@heim3.tu-clausthal.de (Christian Schlange) |
| Newsgroups: | comp.compilers |
| Date: | 13 Oct 1998 02:16:35 -0400 |
| Organization: | Xography |
| References: | 98-10-060 98-10-065 |
| Keywords: | yacc |
Hello,
>Bison only creates a parser module. You will also have to supply
>a lexer module (collect chars from input into tokens).
>Have a look at flex, it normally is partner of Bison.
The example itself had some errors. It contained lines like
$$ = $$1 + $$2 instead of $$ = $1 + $2. After changing that
everything worked fine :)
Bye,
Christian
Return to the
comp.compilers page.
Search the
comp.compilers archives again.