Poonam Sahoo
Poonam Sahoo

Reputation: 181

Installation of flex and bison in ubuntu

if the packages of flex and bison are not available in synaptic package manager,then how can one install flex and bison in ubuntu 10.04? and if i download any of these packages, can you just tell me the way to use them so that they get available in synaptic package manager?

Upvotes: 18

Views: 58860

Answers (2)

Fredrik Pihl
Fredrik Pihl

Reputation: 45670

Download the src for e.g. bison from http://ftp.gnu.org/gnu/bison/ and then do the normal

./configure
make
sudo make install

Download flex from https://github.com/westes/flex/releases

Upvotes: 4

MrPickles
MrPickles

Reputation: 1445

Even better is:

sudo apt-get update
sudo apt-get install flex
sudo apt-get install bison

which flex  /*Sanity check to make sure flex is installed*/
which bison /*Sanity check to make sure bison is installed*/

Upvotes: 38

Related Questions