[Lldb-commits] [lldb] r178384 - <rdar://problem/13131838>
Greg Clayton
gclayton at apple.com
Fri Mar 29 16:18:38 PDT 2013
Author: gclayton
Date: Fri Mar 29 18:18:38 2013
New Revision: 178384
URL: http://llvm.org/viewvc/llvm-project?rev=178384&view=rev
Log:
<rdar://problem/13131838>
Platform select documents a -S option but doesn't accept it, now it does.
Modified:
lldb/trunk/source/Interpreter/OptionGroupPlatform.cpp
Modified: lldb/trunk/source/Interpreter/OptionGroupPlatform.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/OptionGroupPlatform.cpp?rev=178384&r1=178383&r2=178384&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/OptionGroupPlatform.cpp (original)
+++ lldb/trunk/source/Interpreter/OptionGroupPlatform.cpp Fri Mar 29 18:18:38 2013
@@ -135,7 +135,7 @@ OptionGroupPlatform::SetOptionValue (Com
m_sdk_build.SetCString (option_arg);
break;
- case 's':
+ case 'S':
m_sdk_sysroot.SetCString (option_arg);
break;
More information about the lldb-commits
mailing list