How To Install Flex And Bison On Windows

Flex and Bison are unix utilities that can help you to write very fast parsers for arbitrary file formats. If your synaptic package manager currently does not include these packages, you can install Flex and Bison through a simple terminal command. This method is specific to Ubuntu 10.4 but should also work for later versions. May 27, 2014 - CodeBlocks 4.Install flex,bison and Dev-cpp or codeblocks. I have installed it in my C drive. 5.Set environment variable paths for windows Xp. Bison for Windows. Bison: Yacc-compatible parser generator Version. Then you must download and install the dependencies zip file yourself.

I'm having Lex and YACC files to parse my files (.l file and .y file).

How to compile those files and how to make equivalent .c file for them in windows platform?

Thorin OakenshieldThorin Oakenshield

9 Answers

As for today (2011-04-05, updated 2017-11-29) you will need the lastest versions of:

  1. After that, do a full install in a directory of your preference without spaces in the name. I suggest C:GnuWin32. Do not install it in the default (C:Program Files (x86)GnuWin32) because bison has problems with spaces in directory names, not to say parenthesis.

    Music Downloads Search and download from over 6 million songs, music videos and lyrics. All songs are in the MP3 format and can be played on any computer or on any MP3 Player including the iPhone. Live concert albums of your favorite band. Learn how to download music and how to burn music. Enya full discography torrent download. Largest collection of free music.

  2. Also, consider installing Dev-CPP in the default directory (C:Dev-Cpp)

  3. After that, set the PATH variable to include the bin directories of gcc (in C:Dev-Cppbin) and flexbison (in C:GnuWin32bin). To do that, copy this: ;C:Dev-Cppbin;C:GnuWin32bin and append it to the end of the PATH variable, defined in the place show by this figure:
    If the figure is not in good resolution, you can see a step-by-step here.

  4. Open a prompt, cd to the directory where your '.l' and '.y' are, and compile them with:

    1. flex hello.l
    2. bison -dy hello.y
    3. gcc lex.yy.c y.tab.c -o hello.exe

You will be able to run the program. I made the sources for a simple test (the infamous Hello World):

How to install flex and bison on windows

Hello.l

Hello.y

Edited: avoiding 'warning: implicit definition of yyerror and yylex'.

Disclaimer: remember, this answer is very old (since 2011!) and if you run into problems due to versions and features changing, you might need more research, because I can't update this answer to reflect new itens. Thanks and I hope this will be a good entry point for you as it was for many.

Updates: if something (really small changes) needs to be done, please check out the official repository at github: https://github.com/drbeco/hellex

Happy hacking.

Dr BecoDr Beco

What you (probably want) are Flex 2.5.4 (some people are now 'maintaining' it and producing newer versions, but IMO they've done more to screw it up than fix any real shortcomings) and byacc 1.9 (likewise). (Edit 2017-11-17: Flex 2.5.4 is not available on Sourceforge any more, and the Flex github repository only goes back to 2.5.5. But you can apparently still get it from a Gnu ftp server at ftp://ftp.gnu.org/old-gnu/gnu-0.2/src/flex-2.5.4.tar.gz.)

Since it'll inevitably be recommended, I'll warn against using Bison. Bison was originally written by Robert Corbett, the same guy who later wrote Byacc, and he openly states that at the time he didn't really know or understand what he was doing. Unfortunately, being young and foolish, he released it under the GPL and now the GPL fans push it as the answer to life's ills even though its own author basically says it should be thought of as essentially a beta test product -- but by the convoluted reasoning of GPL fans, byacc's license doesn't have enough restrictions to qualify as 'free'!

Jerry CoffinJerry Coffin

There are ports of flex and bison for windows here: http://gnuwin32.sourceforge.net/

flex is the free implementation of lex. bison is the free implementation of yacc.

lesmanalesmana

You can find the latest windows version of flex & bison here: http://sourceforge.net/projects/winflexbison/

LexxmarkLexxmark
SkurmedelSkurmedel

Compiler Construction Using Flex And Bison

Go for the full installation of Git for windows (with Unix tool), and bison and flex would come with it in the bin folder.

Archy Will HeArchy Will He

Also worth noting that WinFlexBison has been packaged for the Chocolatey package manager. Install that and then go:

..which at the time of writing contains Bison 2.7 & Flex 2.6.3.

There is also winflexbison3 which (at the time of writing) has Bison 3.0.4 & Flex 2.6.3.

Alastair MawAlastair Maw

Flex And Bison Book Pdf

the easiest method is to download and install cygwin and download gcc and flex packages during installation.Then to run a lex file for eg. abc.l

we write

flex abc.l

gcc lex.yy.c -o abc.exe

Flex And Bison For Windows

./abc.exe

aayush shahaayush shah

I was having the same problem, it has a very simple solution.
Steps for executing the 'Lex' program:

  1. Tools->'Lex File Compiler'
  2. Tools->'Lex Build'
  3. Tools->'Open CMD'
  4. Then in command prompt type 'name_of_file.exe' example->'1.exe'
  5. Then entering the whole input press Ctrl + Z and press Enter.
Amit Amit

Not the answer you're looking for? Browse other questions tagged windowsbisonyacclexflex-lexer or ask your own question.

Posted on  by  admin