Search Results

2
votes

Detecting CPU architecture (32bit / 64bit ) in scons?

Something like this? env = Environment() conf = Configure(env) if conf.CheckDeclaration("__i386__"): conf.Define("MY_ARCH", "blahblablah") env = conf.Finish() …