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

Re: [sc-dev] setting compiler binary with scons



hi opt,

On Fri, Jan 13, 2006 at 12:25:24PM +0100, oswald berthold wrote:
> quick question: how do i set the compiler with scons to
> arm-linux-g++ instead of g++?

edit SConstruct, go to where the environment is created:

env = Environment(
    ...,
    CC = 'arm-linux-g++')

this should really be accessible from the commandline ...

<sk>