diff options
author | Vinson Lee <[email protected]> | 2009-09-08 12:31:42 +0100 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-02 20:33:32 -0800 |
commit | c3b7f93e0284bf3337f32f3ec77fde4dbcc9c283 (patch) | |
tree | 4c616b4fef3ca8580928e7ce7bcde2a121846cab | |
parent | 235c0c81346c44e24909b6e48394ea62b136a36b (diff) |
scons: Add Mac OS to target platform list.
(cherry picked from commit 2c307c775018e5b9680de8022ddf0ce3b6f560be)
-rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.py b/common.py index ccb962981d1..3b6bf52c035 100644 --- a/common.py +++ b/common.py @@ -59,7 +59,7 @@ def AddOptions(opts): opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine, allowed_values=('generic', 'ppc', 'x86', 'x86_64'))) opts.Add(EnumOption('platform', 'target platform', default_platform, - allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince'))) + allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince', 'darwin'))) opts.Add(EnumOption('toolchain', 'compiler toolchain', 'default', allowed_values=('default', 'crossmingw', 'winsdk', 'winddk'))) opts.Add(BoolOption('llvm', 'use LLVM', 'no')) |