diff options
author | Charmaine Lee <charmainel@vmware.com> | 2016-08-11 18:41:52 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2016-08-26 06:19:51 -0600 |
commit | a5fd54f8bf6713312fa5efd7ef5cd125557a0ffe (patch) | |
tree | 43dbf413afc24d3e8de56d1fcd828c0a373b7c10 /common.py | |
parent | 2e1cfcc431471c68ba79c9323716bed7da79c909 (diff) |
svga: add opt to the list of valid build types
For opt build, add VMX86_STATS to the list of cpp defines.
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ def AddOptions(opts): from SCons.Options.EnumOption import EnumOption opts.Add(EnumOption('build', 'build type', 'debug', allowed_values=('debug', 'checked', 'profile', - 'release'))) + 'release', 'opt'))) opts.Add(BoolOption('verbose', 'verbose output', 'no')) opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine, |