Re: Yacc = Bison???
- From: Ben C <spamspam@xxxxxxxxx>
- Date: 29 Mar 2006 12:46:05 GMT
On 2006-03-29, Kamikazy <josip.hars@xxxxxx> wrote:
Hi! Can someone tell me basic (if there is one) difference beetwen yacc and
bison? I mean, are they the same only bison is a better version, do they use
same input files?
Bison is the GNU version of yacc (yacc predates GNU, and there are no
doubt other yaccs). Bison does more than yacc, but should be upwardly
compatible with files input files designed for yacc.
On my GNU/Linux system /usr/bin/yacc is just a wrapper for bison anyway:
#! /bin/sh
exec /usr/bin/bison -y "$@"
The GNU version of lex is called flex and is the same idea-- lex is just
a wrapper for flex.
Good luck with your parser!
.
- Follow-Ups:
- Re: Yacc = Bison???
- From: Kamikazy
- Re: Yacc = Bison???
- References:
- Yacc = Bison???
- From: Kamikazy
- Yacc = Bison???
- Prev by Date: Re: Subtract smaller or larger number from x?
- Next by Date: Re: Subtract smaller or larger number from x?
- Previous by thread: Yacc = Bison???
- Next by thread: Re: Yacc = Bison???
- Index(es):
Relevant Pages
|