[Lldb-commits] [lldb] r144562 - in /lldb/trunk: lldb.xcodeproj/project.pbxproj source/Interpreter/CommandInterpreter.cpp

Chris Lattner clattner at apple.com
Mon Nov 14 15:37:47 PST 2011


On Nov 14, 2011, at 12:47 PM, Jim Ingham wrote:
> The curse of a shared Scheme is you fight over incidental settings like this...  I'm not sure why you would want to build a Debug version of lldb against the Release version of the LLVM libraries, so I think my setting is more useful.  Whoever likes the Release version better will probably overwrite my setting the next time they commit ;-)

Ok, please fix this though:

>>> @@ -1807,7 +1807,7 @@
>>>       {
>>>           if (out_file.IsValid() && !reader.IsDone() && reader.GetPrompt())
>>>           {
>>> -                out_file.Printf ("Please answer \"y\" or \"n\"\n%s", reader.GetPrompt());
>>> +                out_file.Printf ("Please answer \"y\" or \"Y\" or \"n\" or \"N\"\n%s", reader.GetPrompt());
>>>               out_file.Flush ();
>>>           }
>> 
>> There is no need to be exhaustive here, just ask for y/n and accept both cases.
>> 
>> -Chris
>> 
> 




More information about the lldb-commits mailing list