diff options
author | Michel Dänzer <[email protected]> | 2008-10-23 10:28:48 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2008-10-23 10:28:48 +0200 |
commit | 6b69e3c71741d99a54c6f4dcb605a3c241239aeb (patch) | |
tree | d7ae0ea9c1ef4c8cbf205a5b513e78bf53831925 /scons | |
parent | 06c43beee08052bae3832586559889d74fb538b6 (diff) |
scons: ppc support.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/gallium.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 3631607e666..2a42bdf2bb9 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -175,6 +175,7 @@ def generate(env): machine = env['machine'] platform = env['platform'] x86 = env['machine'] == 'x86' + ppc = env['machine'] == 'ppc' gcc = env['platform'] in ('linux', 'freebsd', 'darwin') msvc = env['platform'] in ('windows', 'winddk', 'wince') |