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.

<rdar://problem/13189024>

llvm-svn: 175197
This commit is contained in:
Jim Ingham 2013-02-14 19:10:36 +00:00
parent f809c6491d
commit 289aca642e
1 changed files with 4 additions and 1 deletions

View File

@ -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."},