llvm-project/lldb/source/Target
Greg Clayton 8938f8daf0 <rdar://problem/13200878>
When launching in the shell, make sure if you specify a relative path, and if the current working directory has a space in it, that we don't hose the shell invocation.

Currently if we launch with a relative path, we prepend the current working directory to the PATH using:

PATH=`cwd`:$PATH a.out ...

We needed to add quotes around the value for PATH to make sure if any paths in PATH contained spaces, that we don't hose the shell command. Now we do a:

PATH="`cwd`:$PATH" a.out ...

llvm-svn: 175135
2013-02-14 03:54:39 +00:00
..
ABI.cpp Fixed build warnings. 2012-10-30 23:56:14 +00:00
CPPLanguageRuntime.cpp <rdar://problem/11113279> 2012-03-26 23:03:23 +00:00
ExecutionContext.cpp Rework how the API mutex is acquired when filling out an ExecutionContext from an ExecutionContextRef, 2012-08-22 21:34:33 +00:00
LanguageRuntime.cpp Add "target.process.stop-on-shared-library-events" setting, and make it work. 2013-01-26 02:19:28 +00:00
Makefile Merged Eli Friedman's linux build changes where he added Makefile files that 2010-07-09 20:39:50 +00:00
Memory.cpp Resolve printf formatting warnings on Linux: 2012-11-29 21:49:15 +00:00
ObjCLanguageRuntime.cpp <rdar://problem/13210494> 2013-02-13 22:56:14 +00:00
OperatingSystem.cpp Added a new plug-in type: lldb_private::OperatingSystem. The operating system 2011-08-22 02:49:39 +00:00
PathMappingList.cpp Fixed a bug in the path remapper that caused 2012-09-26 01:28:11 +00:00
Platform.cpp <rdar://problem/12973809> 2013-01-11 23:44:27 +00:00
Process.cpp <rdar://problem/13200878> 2013-02-14 03:54:39 +00:00
RegisterContext.cpp Make the unwinding of the stack part of "thread return" work, and add the thread return command. 2012-09-14 02:14:15 +00:00
SectionLoadList.cpp <rdar://problem/13092722> 2013-02-01 21:38:35 +00:00
StackFrame.cpp <rdar://problem/12560257> 2012-12-06 02:33:54 +00:00
StackFrameList.cpp <rdar://problem/12649160> 2012-12-05 00:16:59 +00:00
StackID.cpp Resolve printf formatting warnings on Linux: 2012-11-29 21:49:15 +00:00
StopInfo.cpp Add a test for handling a function call that throws an exception, and make it work. 2013-02-14 03:05:42 +00:00
Target.cpp Remove the m_images(NULL) hack in the Target ctor now 2013-02-04 23:30:05 +00:00
TargetList.cpp <rdar://problem/12990038> 2013-01-11 20:49:54 +00:00
Thread.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadList.cpp <rdar://problem/12976225> 2013-01-08 22:10:01 +00:00
ThreadPlan.cpp Fix Linux build warnings due to redefinition of macros: 2012-12-05 00:20:57 +00:00
ThreadPlanBase.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanCallFunction.cpp Add a test for handling a function call that throws an exception, and make it work. 2013-02-14 03:05:42 +00:00
ThreadPlanCallUserExpression.cpp Separated the "expr --unwind-on-error" behavior into two parts, actual errors (i.e. crashes) which continue to be 2013-01-15 02:47:48 +00:00
ThreadPlanRunToAddress.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanShouldStopHere.cpp Resolve printf formatting warnings on Linux: 2012-11-29 21:49:15 +00:00
ThreadPlanStepInRange.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepInstruction.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepOut.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepOverBreakpoint.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepOverRange.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepRange.cpp Add "target.process.stop-on-shared-library-events" setting, and make it work. 2013-01-26 02:19:28 +00:00
ThreadPlanStepThrough.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanStepUntil.cpp Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where 2013-02-09 01:29:05 +00:00
ThreadPlanTracer.cpp Fix Linux build warnings due to redefinition of macros: 2012-12-05 00:20:57 +00:00
ThreadSpec.cpp Resolve printf formatting warnings on Linux: 2012-11-29 21:49:15 +00:00
UnixSignals.cpp Fixed some issues with ARM backtraces by not processing any push/pop 2011-07-06 04:07:21 +00:00
UnwindAssembly.cpp Changed the emulate instruction function to take emulate options which 2011-04-26 04:39:08 +00:00