Re: Can't compile bison/flex output files without cc?

2009-05-01 Thread Philip Herron
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey I got this all working it seems. I didn't finish it but i can see how anjuta makes it work. So basicly you want to be just adding in your foo.l and fooparser.y as your sources. Because when you add a new source you should notice anjuta manages yo

Re: Can't compile bison/flex output files without cc?

2009-05-01 Thread Philip Herron
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey I found this thread: (is it the same problem?) http://ubuntuforums.org/showthread.php?t=834944 I am downloading anjuta to try it out for doing bison/flex so i'll let you know how i get on. But i think there must be a way to do this. If you have

Re: Can't compile bison/flex output files without cc?

2009-05-01 Thread Mark Redd
> > One quick question what do you mean that you cant use CC in anjuta? as > in c-compiler or what? I meant that I don't use directly "cc" command typing it in console, but Anjuta does it for me. I wasn't much clear and so now I'll explain better my situation. I've done my scanner/parser and it

Re: Can't compile bison/flex output files without cc?

2009-05-01 Thread Philip Herron
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey One quick question what do you mean that you cant use CC in anjuta? as in c-compiler or what? This is the way your don't want to be working with your parser and lexer. I mean you want your makefile to be re-generating your parser and compiling if

Can't compile bison/flex output files without cc?

2009-05-01 Thread Mark Redd
Hello everybody. I'm developing a didactic project using Anjuta IDE. I must use it, so I can't use cc. I've made my scanner/parser with flex/bison and if I type in console these tree commands flex foo.l bison -d foo.y cc lex.yy.c foo.tab.c -o foo it works. So I said "ok, now I could just create a