Re: Compiler Flags

2000-11-18 Thread Ossama Othman
Hi, On Sat, Nov 18, 2000 at 06:41:17PM +0100, Simon Richter wrote: > On Fri, 17 Nov 2000, Tim Heath wrote: > > > How do I add compiler flags? What AM is necessary to accomplish that? > > Make your configure.in add them to $CFLAGS, before AC_PROG_CC (to make > sure the compiler actually acc

Re: Compiler Flags

2000-11-18 Thread Simon Richter
On Fri, 17 Nov 2000, Tim Heath wrote: > How do I add compiler flags? What AM is necessary to accomplish that? Make your configure.in add them to $CFLAGS, before AC_PROG_CC (to make sure the compiler actually accepts them). Simon -- GPG public key available from http://phobos.fs.tum.

Re: aCC compiler Flags support

2000-11-18 Thread Simon Richter
On Fri, 17 Nov 2000, Tim Heath wrote: > I don't know of a way to use a #define within a source file for a > compiler flag. Can you tell me the other way to accomplish this goal? -D is the compiler flag for "add this definition as if it were #defined". Thus, the source should begin with #defin