diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-03-25 19:24:16 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-03-25 19:24:49 +0000 |
commit | 26e27ba30884be927cf1bc21d39f32d6096a6678 (patch) | |
tree | 9ff5de433326eec1f012e7fc6a4e67238d0046f1 /common.py | |
parent | 33fa6a27557171e8368d96ebf8e61aad283538b1 (diff) | |
download | mesa-26e27ba30884be927cf1bc21d39f32d6096a6678.tar.gz |
scons: Support building with the Windows SDK.
x86_64 is also supported.
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.py b/common.py index 1a99df41c01..f1c6372abde 100644 --- a/common.py +++ b/common.py @@ -61,7 +61,7 @@ def AddOptions(opts): opts.Add(EnumOption('platform', 'target platform', default_platform, allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince'))) opts.Add(EnumOption('toolchain', 'compiler toolchain', 'default', - allowed_values=('default', 'crossmingw', 'winddk'))) + allowed_values=('default', 'crossmingw', 'winsdk', 'winddk'))) opts.Add(BoolOption('llvm', 'use LLVM', 'no')) opts.Add(BoolOption('dri', 'build DRI drivers', default_dri)) |