[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Compiler Flags
From: |
Tom Tromey |
Subject: |
Re: Compiler Flags |
Date: |
18 Nov 2000 13:40:27 -0700 |
>>>>> "Simon" == Simon Richter <address@hidden> writes:
>> On Fri, 17 Nov 2000, Tim Heath wrote:
>> How do I add compiler flags? What AM is necessary to accomplish that?
Simon> Make your configure.in add them to $CFLAGS, before AC_PROG_CC
Simon> (to make sure the compiler actually accepts them).
Actually, you don't want to do that. CFLAGS, CPPFLAGS, and the like
are defined to be "user variables". That is, the user should be free
to do this:
make CFLAGS='my flags' ...
If your rewritten CFLAGS contained things necessary for your package,
this would break.
You can set private compiler flags using the `AM_' form of variables:
AM_CFLAGS, AM_CXXFLAGS, AM_CPPFLAGS, etc.
Tom