From owner-freebsd-questions@FreeBSD.ORG Tue May 9 15:43:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CACC16A48B for ; Tue, 9 May 2006 15:43:55 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25D7D43D49 for ; Tue, 9 May 2006 15:43:52 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (aris.bedc.ondsl.gr [62.103.39.226]) (authenticated bits=128) by igloo.linux.gr (8.13.6/8.13.6/Debian-1) with ESMTP id k49FhgDV015951 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 9 May 2006 18:43:44 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k49FhxxE013868; Tue, 9 May 2006 18:43:59 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k49Fhxqb013867; Tue, 9 May 2006 18:43:59 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Tue, 9 May 2006 18:43:58 +0300 From: Giorgos Keramidas To: Robe Message-ID: <20060509154358.GA13829@gothmog.pc> References: <221c791e0605090838h7fb3a45di89f66f4b860d6246@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <221c791e0605090838h7fb3a45di89f66f4b860d6246@mail.gmail.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.393, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.81, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: About Bison and Flex X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 May 2006 15:43:55 -0000 On 2006-05-09 10:38, Robe wrote: > Hi, > I'm a new user of FreeBSD and I want to know if the Bison parser generator > and Flex for Linux is available here. Yes. $ which lex yacc /usr/bin/lex /usr/bin/yacc $ which flex /usr/bin/flex $ which bison /usr/local/bin/bison $ The base system includes lex(1) and yacc(1). The lex(1) utility is actually flex(1). You can install bison(1) from the Ports & Packages Collection, i.e. with: # pkg_add -r bison