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 your group to be featured on the Yahoo! Groups website? 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 1904 - 1933 of 4340   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1904
Paulo Karol <paulokarol@...> wrote:Data: Mon, 2 Feb 2004 15:20:34 -0300 (ART) De: Paulo Karol Assunto: help me Para:...
Paulo Karol
paulokarol
Offline Send Email
Feb 2, 2004
6:35 pm
1905
could you tell me how to output the assembly code to an output file? i have done this before using JCup, don't know whether it's similar in Yacc or not. Thanx...
cs_qihao
Offline Send Email
Feb 3, 2004
2:57 am
1906
In our project, The source program will be in some other language,it will be converted to assembly language using some disassemblers...there are some commands...
prathibaa_m
Offline Send Email
Feb 3, 2004
7:00 am
1907
what i m doing now is to write a script engine, which will convert the script language to c++ code, and then the c++ file will be compiled and executed. In the...
cs_qihao
Offline Send Email
Feb 3, 2004
7:27 am
1908
... Putting A Human Face On Technology ;-) ... Literally! http://www.TheFaceOf.com...
Wilbur Streett
wylburit
Offline Send Email
Feb 7, 2004
2:49 pm
1909
The complete body of the message.. HTML in emails that are forwarded in Eudora 3.0 lost some text.. Wilbur Hello Wilbur, I'm a college student in China, right...
Wilbur Streett
wylburit
Offline Send Email
Feb 7, 2004
3:06 pm
1910
Here is my lex file(a.txt): %{ int wordCount = 0; %} chars [A-za-z\¡¯\'\.\"] numbers ([0-9])+ delim [" "\n\t] whitespace {delim}+ words {chars}+ %% {words} {...
hyperego2001
Offline Send Email
Feb 7, 2004
4:20 pm
1911
hi, in your file the last %% not exists, and before main define the function yyerror void yyerror(char *s) { printf("%s",s); } hyperego2001...
Paulo Karol
paulokarol
Offline Send Email
Feb 9, 2004
1:30 pm
1912
Is there any limit on bison? Such as the depth of nesting. Is it determined by the memory resource or anything else? I exhausted the memory when I tried to...
pp_316
Offline Send Email
Feb 17, 2004
6:07 pm
1913
anything ok?...
m.bruno@...
Send Email
Feb 20, 2004
4:02 pm
1914
I downloaded the flex & bison code and ran flex against the first example in the O'Reilly lex & yacc book. It generated lex.yy.c. Visual Studio.NET hates it....
JimT
jim_taylor@...
Send Email
Mar 7, 2004
4:53 am
1915
Hi JimT, There is an option to rename the outputs files. Using the same pls rename ur lex.yy.c to lex_yy.c Guess the issue must be resolved. Regards, GSM ... ...
G S Murthy
murthy_gs2k
Offline Send Email
Mar 8, 2004
6:46 am
1916
Hi. I'm trying to run flex/bison with borland's free bcc32 under xp. With a little fiddling, I can get flex to work, but bison generates a numbrer of compile...
linguist46
Offline Send Email
Mar 8, 2004
2:30 pm
1917
I copied the lex code from the first example in the O'Reilly "lex & yacc" book into a file called CH1_1. When I ran flex it produced a file called lex.yy.c....
JimT
jim_taylor@...
Send Email
Mar 8, 2004
7:29 pm
1918
Try using Google with "unistd.h" as the search string. :) I found lots of results! Regards, Martin...
Martin VrÄko
martin@...
Send Email
Mar 8, 2004
7:37 pm
1919
unistd.h is a standard file that only exists on Unix-like machines. It will not exist on a Windows machine as a standard file ... From: "Martin Vrèko"...
Daron Anderson
dnanderson@...
Send Email
Mar 8, 2004
7:43 pm
1920
I had the same problem. I made an empty file called unistd.h, with just the comment "/* empty file to fool the code generated by flex */" to explain it to...
Mark Van Peteghem
mvp_be
Offline Send Email
Mar 10, 2004
9:03 am
1921
At 04:06 AM 3/10/2004, you wrote: I guess it has been covered before but here is my contribution: unistd.h is a standart header file on Unix systems (and...
Sam Watson
AardVark_03
Offline Send Email
Mar 11, 2004
4:06 am
1922
Hi, I am a lex/yacc beginner working on a C preprocessor. Does anyone know how to parse library functions in C? I found some grammar for C on the web, but they...
yyan95112
Offline Send Email
Mar 11, 2004
6:25 am
1923
Hello Every one We have following requirements for our client World's 4th Largest company in Wireless Phone Manufacturing and Telecom. Company profile is...
jobs india
jobs_indiaa
Offline Send Email
Mar 12, 2004
1:02 pm
1924
Since this is not a job advertisement list, jobs_indiaa@... has been placed on moderated status.. Wilbur ... Putting A Human Face On Technology ;-) ... ...
Wilbur Streett
wylburit
Offline Send Email
Mar 12, 2004
2:06 pm
1925
Hi, I'm a complete newbie to Flex, and would be very grateful if you could help me on this problem. i downloaded the flex.exe to my XP system, which has DJ's...
wildlibi
Offline Send Email
Mar 14, 2004
8:45 pm
1926
This email address is a spam trap and email sent to it will not be delivered. If you wish to contact Blue Box Internet please re-send your message to...
Andracbhyi@...
Send Email
Mar 14, 2004
8:46 pm
1927
Hi all I,m new member Actually I have aproject to use Lex/YACC (actually FLEX and BISON) can any one tell me just which point i can start from it .. thanc you...
khalid_al_ameri
Offline Send Email
Mar 14, 2004
10:14 pm
1928
What am I doing wrong? I copied the ch1_05.l, ch1_05.y, and ch1_05.h files from the samples I downloaded from the O'Reilly support site for their "lex & yacc"...
JimT
jim_taylor@...
Send Email
Mar 16, 2004
7:44 am
1929
This are steps which you must do to ,,play" with flex and bison Requirements for Win32 platform: 1.C or C++ implementation (MINGW or Cygwin are best and free )...
M.K. invisible
mark_kica
Offline Send Email
Mar 16, 2004
8:33 pm
1930
I started with the file ch1-05y.h which looks like this: # define NOUN 257 # define PRONOUN 258 # define VERB 259 # define ADVERB 260 # define ADJECTIVE 261 #...
JimT
jim_taylor@...
Send Email
Mar 16, 2004
10:00 pm
1931
Hi Can anyone please tell me how to deal with undefined reference to yywrap. Thanks in advance -Sam ... Yahoo! Messenger - Communicate instantly..."Ping" your...
sam kevin
sam123_0
Offline Send Email
Mar 24, 2004
6:23 pm
1932
Sam: As the first line of your .l file, enter %option noyywrap This makes the error disappear. JimT...
JimT
jim_taylor@...
Send Email
Mar 24, 2004
8:52 pm
1933
Hello, 1) I am using the bison++ compiler two develop two parsers which are being used to parse two different grammers in a single application 2) bison ++ uses...
Maansi Gupta
maansi12
Offline Send Email
Apr 7, 2004
7:15 am
Messages 1904 - 1933 of 4340   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