diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-03-08 19:58:34 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-03-31 18:37:38 +0100 |
commit | 711f6428bcc4838abb3f62a2971ee8c53c90eff5 (patch) | |
tree | 413533a21c2c528c34a9a670d0284a0583f670d7 | |
parent | f1f6370eb41dc83c65c415c7cfd6699a36559172 (diff) | |
download | mesa-711f6428bcc4838abb3f62a2971ee8c53c90eff5.tar.gz |
scons: Allow any toolchain to be specified in the command line.
-rw-r--r-- | common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common.py b/common.py index 928a4496f78..97389ed5001 100644 --- a/common.py +++ b/common.py @@ -60,7 +60,6 @@ def AddOptions(opts): allowed_values=('generic', 'ppc', 'x86', 'x86_64'))) opts.Add(EnumOption('platform', 'target platform', default_platform, allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince', 'darwin', 'embedded'))) - opts.Add(EnumOption('toolchain', 'compiler toolchain', 'default', - allowed_values=('default', 'crossmingw', 'winsdk', 'winddk'))) + opts.Add('toolchain', 'compiler toolchain', 'default') opts.Add(BoolOption('llvm', 'use LLVM', 'no')) opts.Add(BoolOption('dri', 'build DRI drivers', default_dri)) |