On 10/18/05, Yves Willems <[EMAIL PROTECTED]> wrote: > I'm trying to get a gcc apply task running but found out that it simply > doesn't execute the executable I specify. > > I can put in rubbish and still it tells me that it ran successfully. This is > the command syntax:
<apply> is a "smart" task, meaning that it does dependency checking, and if everything looks up-to-date (timestamp of target files are newer than corresponding source files), it doesn't do anything. I'd say it's possible you have a foo.o file in your current dir that's newer than foo.c. BTW, instead of always using <arg line>, check out <arg value> and <arg file>. --DD --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
