From: Jim Ingham Date: Thu, 14 Feb 2013 19:10:36 +0000 (+0000) Subject: Make it clear that if you #include .c/.cpp/.m/.mm etc files, you will have to X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=289aca642eb0033aa8bdc9b2ce163b346d807193;p=platform%2Fupstream%2Fllvm.git Make it clear that if you #include .c/.cpp/.m/.mm etc files, you will have to change the breakpoint-inline-strategy for the breakpoints to take. llvm-svn: 175197 --- diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 87566ad..a029819 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -629,7 +629,10 @@ CommandObjectBreakpointSet::CommandOptions::g_option_table[] = "The breakpoint stops only for threads in the queue whose name is given by this argument."}, { LLDB_OPT_FILE, false, "file", 'f', required_argument, NULL, CommandCompletions::eSourceFileCompletion, eArgTypeFilename, - "Specifies the source file in which to set this breakpoint."}, + "Specifies the source file in which to set this breakpoint. " + "Note, by default lldb only looks for files that are #included if they use the standard include file extensions. " + "To set breakpoints on .c/.cpp/.m/.mm files that are #included, set target.inline-breakpoint-strategy always " + " to \"always\"."}, { LLDB_OPT_SET_1, true, "line", 'l', required_argument, NULL, 0, eArgTypeLineNum, "Specifies the line number on which to set this breakpoint."},