Re: how to build imcc?

2003-02-14 Thread Dan Sugalski
At 3:50 PM +0100 2/13/03, Juergen Boemmels wrote: imcc is the only Makefile which does these kind of inplace changes. This perl -pi seems to fail in your case and only deletes the newly generated Makefile. As these are only warning fixes just comment out these 3 system lines. Why is this

Re: how to build imcc?

2003-02-13 Thread Joe Wilson
--- Steve Fink [EMAIL PROTECTED] wrote: On Wed, Feb 12, 2003 at 08:42:59AM -0800, Joe Wilson wrote: I can build the latest CVS parrot, but how do you build imcc? There does not seem to be a Makefile in parrot/languages/imcc even after running 'perl Configure.pl make'. I'm guessing

Re: how to build imcc?

2003-02-13 Thread Juergen Boemmels
Joe Wilson [EMAIL PROTECTED] writes: I can build the latest CVS parrot, but how do you build imcc? There does not seem to be a Makefile in parrot/languages/imcc even after running 'perl Configure.pl make'. I'm guessing that parrot/languages/imcc/Makefile is generated since

RE: how to build imcc? [x-adr][x-bayes]

2003-02-13 Thread Garrett Goebel
From: Juergen Boemmels [mailto:[EMAIL PROTECTED]] But after looking a little more closer I found this: config/gen/makefiles.pl: [...] system($^X -pi -e's/ -Wwrite-strings//' languages/imcc/Makefile); One thing that immediately looks wrong is: perl -e '...' Win32 doesn't like that. It

Re: how to build imcc? [x-adr][x-bayes]

2003-02-13 Thread Tanton Gibbs
, February 13, 2003 10:13 AM Subject: RE: how to build imcc? [x-adr][x-bayes] From: Juergen Boemmels [mailto:[EMAIL PROTECTED]] But after looking a little more closer I found this: config/gen/makefiles.pl: [...] system($^X -pi -e's/ -Wwrite-strings//' languages/imcc/Makefile); One thing

Re: how to build imcc?

2003-02-13 Thread Joe Wilson
The languages/imcc/Makefile is generated when the system calls below are commented out. Thanks. By the way, I had no luck with the alternate quote syntax suggested by someone else. --- Juergen Boemmels [EMAIL PROTECTED] wrote: But after looking a little more closer I found this:

Re: how to build imcc?

2003-02-13 Thread Leopold Toetsch
Joe Wilson wrote: The languages/imcc/Makefile is generated when the system calls below are commented out. Thanks. Thanks for your report. config/gen/makefiles.pl: genfile('config/gen/makefiles/imcc.in', 'languages/imcc/Makefile', commentType = '#'); system($^X -pi -e's/

how to build imcc?

2003-02-12 Thread Joe Wilson
I can build the latest CVS parrot, but how do you build imcc? There does not seem to be a Makefile in parrot/languages/imcc even after running 'perl Configure.pl make'. I'm guessing that parrot/languages/imcc/Makefile is generated since it appears in parrot/languages/imcc/.cvsignore What am I