* 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
>>> "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
>>> "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
* 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
> >>
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
> 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:
> [...
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
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