automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: configure and intel's C++: inappropriate flags -MT -MD -MP -MF


From: Alexandre Duret-Lutz
Subject: Re: configure and intel's C++: inappropriate flags -MT -MD -MP -MF
Date: Fri, 20 Dec 2002 21:17:32 +0100
User-agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu)

>>> "Markus" == Markus Werle <address@hidden> writes:

 Markus> Hi!
 Markus> I have a problem with the latest autotools:

 Markus> From somewhere behind the scenes automake/autoconf
 Markus> decides to insert the following options to the compiler
 Markus> flags; -MT -MD -MP -MF

depcomp adds these options, and ./configure makes the decision
based on the compiler found (or that you specified).

./configure prints something like `checking dependency style of XXX'
at this point.

 Markus> these are not recognized, say ignored ith annoying warnings by
 Markus> intel's C++ 7.0. Any idea how to remove these via
 Markus> configure.in or Makefile.am?

Maybe your are not setting the compiler early enough?  Since
./configure decides which flags to use it must know the
compiler.  Therefore you should run

  ./configure CC=mycc; make

not

  ./configure; make CC=mycc

-- 
Alexandre Duret-Lutz




reply via email to

[Prev in Thread] Current Thread [Next in Thread]