[Bf-committers] Compiler flags

Joe Eagar joeedh at gmail.com
Sun Jul 9 20:08:22 CEST 2006


Giuseppe Ghibò wrote:
> Is there a way to specify in user-config.py the
> compiler flags without having to list them enclosed into
> [ '...', '...', ... ], i.e. something like:
>
> FLAGS = '-O2 -funsigned-char'
>
> rather than
>
> FLAGS = [ '-O2', '-funsigned-char' ]
You can do "-O2 -funsigned-char".split().  Gotta love all those handy 
methods of python strings. :)

Joe


More information about the Bf-committers mailing list