Re: icc dependency generation

2003-06-30 Thread Ralf Wildenhues
* Alexandre Duret-Lutz wrote on Fri, Jun 27, 2003 at 09:09:20PM CEST: > > What happens with `icc -MD -c -o foo/bar.o foo/bar.c' ? > Does that create foo/bar.d or bar.d? For Automake the > ideal would be foo/bar.d. bar.d > You mentioned that the depcomp configure test fails to > chose the icc mo

Re: icc dependency generation

2003-06-28 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: [...] adl> You mentioned that the depcomp configure test fails to adl> chose the icc mode. What mode does it select presently? Update: I've got the occasion to try ICC 7.1 (Build 20030617Z) with automake 1.7.5 and I've found it is

Re: icc dependency generation

2003-06-27 Thread Alexandre Duret-Lutz
>>> "Ralf" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: [...] >> $ icc -MD -c foo/bar.c ; ls -R >> .: >> bar.d bar.o foo >> >> ./foo: >> bar.c bar.h >> $ more bar.d >> bar.o: foo/bar.c /usr/include/assert.h /usr/include/features.h \ [...] What happens with `icc -MD -c -o foo/bar.o

Re: icc dependency generation

2003-06-26 Thread Ralf Wildenhues
* Akim Demaille wrote on Thu, Jun 26, 2003 at 02:47:24PM CEST: > > On Thu, Jun 26, 2003 at 11:23:04AM +0200, Ralf Wildenhues wrote: > >> Intel compiler icc version 7.1 handles the -MF option inconsistently. > > [...] > >> Subsequently, the depcomp 'icc' mode will not be detected correctly > >>

Re: icc dependency generation

2003-06-26 Thread Alexandre Duret-Lutz
On Thu, Jun 26, 2003 at 02:47:24PM +0200, Akim Demaille wrote: > > > On Thu, Jun 26, 2003 at 11:23:04AM +0200, Ralf Wildenhues wrote: > >> Intel compiler icc version 7.1 handles the -MF option inconsistently. > >> Documentation states that it has to be used together with -M or -MM. > >> If used

Re: icc dependency generation

2003-06-26 Thread Akim Demaille
> On Thu, Jun 26, 2003 at 11:23:04AM +0200, Ralf Wildenhues wrote: >> Intel compiler icc version 7.1 handles the -MF option inconsistently. >> Documentation states that it has to be used together with -M or -MM. >> If used with -MD, for example, it will replace the file ending with .d: > [...

Re: icc dependency generation

2003-06-26 Thread Alexandre Duret-Lutz
On Thu, Jun 26, 2003 at 11:23:04AM +0200, Ralf Wildenhues wrote: > Intel compiler icc version 7.1 handles the -MF option inconsistently. > Documentation states that it has to be used together with -M or -MM. > If used with -MD, for example, it will replace the file ending with .d: [...] > Subsequen

icc dependency generation

2003-06-26 Thread Ralf Wildenhues
Intel compiler icc version 7.1 handles the -MF option inconsistently. Documentation states that it has to be used together with -M or -MM. If used with -MD, for example, it will replace the file ending with .d: $ icc -M -MF foo.bar conftest.c $ ls conftest.c foo.bar $ rm foo.bar $ icc -MD -MF f