Search the web
Sign In
New User? Sign Up
flexbisonwin32 · Flex & BISON on Win32
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2045 - 2074 of 4339   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2045
As amazing as it may sound many people do not realize how easy it isto LEGALLY stop paying for their groceries! This is how the one hour television show began...
trudyruchs
Offline Send Email
Aug 4, 2004
1:47 am
2046
i am an computer enggineering student and i am planning todo a c compiler as my main project........ can anyone plzz provide me with this Flex and Bison Port...
Ashwin Aravind
appoos_in
Offline Send Email
Aug 4, 2004
3:35 am
2047
hello, Include stdafx.h in the have flex and bison generated parser files. Regards Suvendu ... compile, i ... bison...
suvendu_laha
Offline Send Email
Aug 9, 2004
1:20 pm
2048
Is there a way to turn off precompiled headers for the generated parser files? mike To: flexbisonwin32@yahoogroups.com From:...
mothfire@...
Send Email
Aug 9, 2004
2:11 pm
2049
Yes. In the Visual Studio project explorer, right-click on the file in question, go to properties, then Precompiled Headers, then select "Not Using Precompiled...
David Haley
ceosilverfox
Offline Send Email
Aug 9, 2004
2:42 pm
2050
I used the examples that Invisible suggested with gnu flex and bison (yacc) under WinXP. Example4 is the first yacc example. ... creates lex.yy.c. ... creates...
chuckmg2
Offline Send Email
Aug 10, 2004
6:27 pm
2051
i am a computer engginerring student i am making a compiler as main project....in flex... bison..... but i am unable to because the library libfl.a tells spme...
Ashwin Aravind
appoos_in
Offline Send Email
Aug 11, 2004
4:10 am
2052
Hello, I'm suspicious about the turbo c++ compiler, but that might be completely unfounded. Under Linux, try using gcc/g++. Under Windows, use either the same,...
David Haley
ceosilverfox
Offline Send Email
Aug 11, 2004
4:28 am
2053
... but ... Thanks to a lead from Jon Kinsey I was able to track down the problems. I had originally installed Bison to C:\Program Files\GnuWin32....
chuckmg2
Offline Send Email
Aug 16, 2004
3:17 pm
2054
I'm an italian student. I installed the binary version 1.875 of Bison and it runs correctly. Working with mysql source code, I need to generate sql_yacc.cpp...
laura
pierapuglisi
Offline Send Email
Aug 25, 2004
9:55 pm
2055
I'm an italian student. I installed the binary version 1.875 of Bison and it runs correctly. Working with mysql source code, I need to generate sql_yacc.cpp...
pierapuglisi
Offline Send Email
Aug 25, 2004
9:55 pm
2056
Hi i am looking for SQL parser too :) can u send me the .C (or cpp) parser file ? Regards Johnny ... From: pierapuglisi To: flexbisonwin32@yahoogroups.com ...
Ivan Dimitrov
dimitrovi58
Offline Send Email
Aug 26, 2004
8:11 am
2057
ciao laura, puoi parlarmi in italiano anche perchč non ho capito granchč. io sarei interessata a questa branca solo che per il momento conosco la parte ...
Nolvia Avagliano
nolvia80
Offline Send Email
Aug 26, 2004
3:44 pm
2058
Hello every one, I just want you to tell me how to make flex read from a file other than the standard input. Thanks ... Faites un voeu et puis Voila !...
" <gnoumou@...>
comloe
Offline Send Email
Aug 26, 2004
6:15 pm
2059
In Unix environments, you can use input redirection, e.g. ./myflexprogram < myinput.txt This command "fills" standard input with the contents of myinput.txt. ...
David Haley
ceosilverfox
Offline Send Email
Aug 26, 2004
7:37 pm
2060
... This is very easy. Open the file and assign it to yyin: FILE *file = fopen("filename.txt", "r"); yyin = file; yylex(); If you use a C++ scanner class, give...
Mark Van Peteghem
mvp_be
Offline Send Email
Aug 26, 2004
7:51 pm
2061
I am trying to switch between input files during a parse. My goals is to parse until I reach a rule that causes the input file to change, parse that buffer,...
Evan A Bell
ebell@...
Send Email
Aug 26, 2004
10:23 pm
2062
hello David, thanks for reply.Yes I m working on Windows.I 'm trying to use Flex and Bison with the Visual Studio.Net environment.Another problem I have to...
" <gnoumou@...>
comloe
Offline Send Email
Aug 27, 2004
1:20 pm
2063
Hi Gnoumou, Well, Mark gave a good description of how to use an input file: -- This is very easy. Open the file and assign it to yyin: FILE *file =...
David Haley
ceosilverfox
Offline Send Email
Aug 27, 2004
6:44 pm
2064
One thing you could try would be to use string streams (if you're in C++). Then you can know at which point you left off with the first stream; create the...
David Haley
ceosilverfox
Offline Send Email
Aug 27, 2004
6:46 pm
2065
C# can not call unmanaged code directly. I think you have to create an interface using managed C++. We use a wrapper object to interface between C# controls...
Evan A Bell
ebell@...
Send Email
Aug 27, 2004
7:33 pm
2066
Hi group, I am a rookie to this topic. I found a link to this group at http://www.kohsuke.org/flex++bison++/. I see you have a nice long history, so probably...
koszi777
Offline Send Email
Aug 28, 2004
9:00 am
2067
Witaj David, W Twoim liście datowanym 27 sierpnia 2004 (20:45:21) można przeczytać: DH> One thing you could try would be to use string streams (if you're in...
Wojtek Bobiatynski
bobiatynski
Offline Send Email
Aug 28, 2004
9:01 am
2068
Hi Peter, What do you mean by 'flexing and bisoning' a functional example? And what does 'return a C# class' mean? Are you trying to write a parser for C#...
David Haley
ceosilverfox
Offline Send Email
Aug 28, 2004
10:54 am
2069
It turns out, doing the nested input with Flex & Bison is really easy. My goal was to support an inclusion directive similar to #include, but to avoid using a...
Evan A Bell
ebell@...
Send Email
Aug 28, 2004
3:10 pm
2070
Hi David, Now that was a quick reply! Sorry for being obscure, but this is due to my lack of experience and knowledge of the terms. With "Example" I mean an...
koszi777
Offline Send Email
Aug 28, 2004
6:49 pm
2071
Hi David, Now that was a quick reply! Sorry for being obscure, but this is due to my lack of experience and knowledge of the terms. With "Example" I mean an...
koszi777
Offline Send Email
Aug 28, 2004
6:49 pm
2072
As I mentioned in my earlier post, the ways C# can access "unmanaged" code are limited. Not as limited as I originally thought. Doing a "I'm feeling lucky"...
Evan A Bell
ebell@...
Send Email
Aug 28, 2004
11:33 pm
2073
... compiler as my main project........ ... Appwizard ..... ... grammar for c & links necessary for desugning a compiler...... ... At a google search for "C...
progwr
Online Now Send Email
Aug 29, 2004
10:00 am
2074
Hello, I would like to move a grammar into a flex & bison form. My problem is with this production: Expression = "if" Expression "then" Expression "else"...
baptistebesson3
Offline Send Email
Sep 3, 2004
4:36 pm
Messages 2045 - 2074 of 4339   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help