diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-10-23 10:28:48 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-10-23 10:28:48 +0200 |
commit | 6b69e3c71741d99a54c6f4dcb605a3c241239aeb (patch) | |
tree | d7ae0ea9c1ef4c8cbf205a5b513e78bf53831925 /SConstruct | |
parent | 06c43beee08052bae3832586559889d74fb538b6 (diff) |
scons: ppc support.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index c1dc624651..8c96817dae 100644 --- a/SConstruct +++ b/SConstruct @@ -70,12 +70,14 @@ platform = env['platform'] # derived options x86 = machine == 'x86' +ppc = machine == 'ppc' gcc = platform in ('linux', 'freebsd', 'darwin') msvc = platform in ('windows', 'winddk') Export([ 'debug', 'x86', + 'ppc', 'dri', 'llvm', 'platform', |