On 990608, at 15:16:44, Abhijit S. Joshi wrote:
> (Bundled) cc: warning 480: The -g option is available only with the C/ANSI C pr.
> (Bundled) cc: warning 480: The -A option is available only with the C/ANSI C pr.
configure is finding the bundled (non-ANSI) compiler instead of gcc.
You could try putting the path to gcc at the beginning of your PATH when
running configure:
env PATH={path to gcc}:$PATH configure [options]
or you could try telling configure to use gcc:
env CC=gcc configure [options]
--
David Ellement