Commit af95fa60 authored by vitalyr@chromium.org's avatar vitalyr@chromium.org

SConstruct: make help work even if guesses failed.

Review URL: http://codereview.chromium.org/3811010

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5648 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent e08e4369
...@@ -665,17 +665,17 @@ SIMPLE_OPTIONS = { ...@@ -665,17 +665,17 @@ SIMPLE_OPTIONS = {
'toolchain': { 'toolchain': {
'values': ['gcc', 'msvc'], 'values': ['gcc', 'msvc'],
'default': TOOLCHAIN_GUESS, 'default': TOOLCHAIN_GUESS,
'help': 'the toolchain to use (' + TOOLCHAIN_GUESS + ')' 'help': 'the toolchain to use (%s)' % TOOLCHAIN_GUESS
}, },
'os': { 'os': {
'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris'], 'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris'],
'default': OS_GUESS, 'default': OS_GUESS,
'help': 'the os to build for (' + OS_GUESS + ')' 'help': 'the os to build for (%s)' % OS_GUESS
}, },
'arch': { 'arch': {
'values':['arm', 'ia32', 'x64', 'mips'], 'values':['arm', 'ia32', 'x64', 'mips'],
'default': ARCH_GUESS, 'default': ARCH_GUESS,
'help': 'the architecture to build for (' + ARCH_GUESS + ')' 'help': 'the architecture to build for (%s)' % ARCH_GUESS
}, },
'regexp': { 'regexp': {
'values': ['native', 'interpreted'], 'values': ['native', 'interpreted'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment