up vote 3 down vote favorite
3
share [g+] share [fb]

Are there any 'standard' plugins for detecting the CPU architecture in scons?

BTW, this question was asked already here in a more general form... just wondering if anyone has already taken the time to incorporate this information into scons.

link|improve this question

feedback

2 Answers

Using i386 is rather compiler dependant, and won't detect non x86 32 bits archs. Assuming the python interpreter used by scons runs on the CPU you are interested in (not always the case - think cross compilation), you can just use python itself.

import platform
print platform.machine()
print platform.architecture()

If you need something more sophisticated, then maybe you will have to write your own configure function - but it may be better to deal with it in your code directly.

link|improve this answer
+1 platform.machine() – ceretullis Feb 5 '09 at 0:19
feedback

Something like this?

env = Environment()
conf = Configure(env)
if conf.CheckDeclaration("__i386__"):
    conf.Define("MY_ARCH", "blahblablah")
env = conf.Finish()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.