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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2141 - 2171 of 4339   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2141
If you do not like having to refer your friends, Message-ID: <copar8+3o9f@eGroups.com> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain;...
lisacalup
Offline Send Email
Dec 3, 2004
9:16 am
2142
i just downloaded flex and bison for win. is there any faq's there or short tutorials that newbies can use??...
angheloko
Offline Send Email
Dec 3, 2004
6:17 pm
2143
Two questions: 1. Where should I install bison.hairy and bison.simple? Unless I put them into my current project directory I also get a "bison.simple not...
brianpribis
Offline Send Email
Dec 10, 2004
3:15 pm
2144
I wish to all of you a Merry Christmas and a happy new year. And many thanks for the great help you always give me !!! Andrea...
Andrea De Nardis
a.denardis@...
Send Email
Dec 23, 2004
3:14 pm
2145
when I compile the file generated by bison and flex, VC++ ouput some error messages. One of them is "can't find <unistd.h>". I create a blank file named...
hoganbjtu
Offline Send Email
Dec 25, 2004
7:51 am
2146
... when I compile the file generated by bison and flex, VC++ ouput some error messages. One of them is "can't find <unistd.h>". I create a blank file named...

wavewood2002
Offline Send Email
Dec 25, 2004
1:22 pm
2147
多谢你的指点, 可是还是不行! ...
chen xian
hoganbjtu
Offline Send Email
Dec 25, 2004
2:37 pm
2148
I am a fresher about the flex and bison. When I compile the souce file I found from the internet, there is a file named "genflex.h" which the compiler can...
Yang, Liu (Kandy)
liuyang@...
Send Email
Dec 27, 2004
3:00 am
2149
... 多谢你的指点, 可是还是不行! ...

wavewood2002
Offline Send Email
Dec 28, 2004
2:23 pm
2150
Better to get Flex/Bison for Win32. You may google it. In my experience, the simple way to know Flex/Bison is to read the files they produced, and try to...
Jihong Wang
jihongwang_2k
Offline Send Email
Dec 28, 2004
3:22 pm
2151
Hi friends i downloaded flex and bison exe files but i cannot run those files in windows.can u say how to install it . whether it is for linux or windows? pls...
vivegam_333
Offline Send Email
Dec 31, 2004
5:32 am
2152
please dowload the documentation of this files also. In linux you can use lex & yacc utilities that are inbuilt in linux OS. you have to create a file...
Krunal Dedhiya
krunaldedhiya@...
Send Email
Dec 31, 2004
9:43 am
2153
You can download UnxUtils which is in http://unxutils.sourceforge.net/ It includes flex and bison and can run on win32 environment....
鏅忎粊
elleryq@...
Send Email
Dec 31, 2004
3:29 pm
2154
Hi i got the Flex.exe win32 version and i made my input file test.l and run it thru Flex ok without errors but when i try to compile it i get in Borland C/C++...
michael161904
Offline Send Email
Dec 31, 2004
7:50 pm
2155
you didn't make the main function void main() { yylex(); } ... compiler v5 ... _________________________________________________________________ ...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
12:58 am
2156
Thanks i will try that and get back to you if it works or not :). ... C/C++ ... test.l ... it ... got ... http://www.hotmail.com...
michael161904
Offline Send Email
Jan 1, 2005
11:43 am
2157
... C/C++ ... test.l ... it ... got ... http://www.hotmail.com...
michael161904
Offline Send Email
Jan 1, 2005
11:59 am
2158
Hi i did that and i got two errors saying Unresolved external '_warning' referenced from "borland\bcc55 \bin\lex.yy.obj" Unresolved external '_yywrap'...
michael161904
Offline Send Email
Jan 1, 2005
12:00 pm
2159
two solutions: (1): create yywrap()function like this: int yywrap() { return 1; } (2): in the second part of your lex file, use %option noyywrap . this...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
12:08 pm
2160
Do i put them at the top of the lex.yy.c file? the void main() { yymain(); } and int yywrap() { return 1; }? I tired this at the top of the file but i got...
michael161904
Offline Send Email
Jan 1, 2005
12:15 pm
2161
both of the main, yywrap functions should be located in the third part of the lex file! by the way, you can add my msn: buaa_chenx@... ... compiler v5 ...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
12:18 pm
2162
How do i goto the third part wats it called or the line number? sorry for questions just that i do ont know much about lex file structures lol. ... function ...
michael161904
Offline Send Email
Jan 1, 2005
12:20 pm
2163
the standard lex file format is: %{ #include <stdio.h> /*or the head files used in your program*/ %} %option noyywrap /*generate yywrap automaticaly */ ...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
12:27 pm
2164
Oh so i put it in the les file not in the c source file? chen xian <buaa_chenx@...> wrote:the standard lex file format is: %{ #include <stdio.h> /*or...
Michael Hanif
michael161904
Offline Send Email
Jan 1, 2005
12:28 pm
2165
Hi this is the file i am using for a test. %{ char *yylval; #include <string.h> %} %option noyywrap %% \"[^"\n]*["\n] { yylval = strdup(yytext+1); if...
michael161904
Offline Send Email
Jan 1, 2005
12:43 pm
2166
%{ char *yylval; #include <string.h> %} %option noyywrap %% \"[^"\n]*["\n] { yylval = strdup(yytext+1); if (yylval[yyleng-2] != '"') printf("improperly...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
12:53 pm
2167
Thanks is that program correct when i run it it just is blank and i type something and it repeats what i say is that correct? ... be a ... Borland C/C++ ... ...
michael161904
Offline Send Email
Jan 1, 2005
1:31 pm
2168
I don't know what you are saying. you define all the actions.so, I don't konw what you want to do. ... compiler v5 ... ...
chen xian
hoganbjtu
Offline Send Email
Jan 1, 2005
1:37 pm
2170
I am using flex++ and vc++, how can I make my scannner to read from a file instead of others? please give me an example. thanks!...
hedyzhaowei
Offline Send Email
Jan 3, 2005
3:53 am
2171
Hi friends , thanks for ur guide . i got an error while running flex. when i run the following prg i am getting "premature EOF" at line 40(last line) %{ ...
Sangeetha Jothimurugan
vivegam_333
Offline Send Email
Jan 3, 2005
11:04 am
Messages 2141 - 2171 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