summaryrefslogtreecommitdiffstats
path: root/lldb/tools/driver/Driver.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-11-08 02:43:13 +0000
committerGreg Clayton <gclayton@apple.com>2011-11-08 02:43:13 +0000
commit1d8859668f49b36a8240f6b9da1c1db49fb60bf8 (patch)
treecae1ba6c95ee936710657fa65b2dd873f7b8586b /lldb/tools/driver/Driver.cpp
parentad45a8681dba6047e1bfdb85bb951ba9238213e1 (diff)
downloadbcm5719-llvm-1d8859668f49b36a8240f6b9da1c1db49fb60bf8.tar.gz
bcm5719-llvm-1d8859668f49b36a8240f6b9da1c1db49fb60bf8.zip
Moved many of the "settings" that used to be in "target.process.*" to just
be in the target. All of the environment, args, stdin/out/err files, etc have all been moved. Also re-enabled the ability to launch a process in a separate terminal on MacOSX. llvm-svn: 144061
Diffstat (limited to 'lldb/tools/driver/Driver.cpp')
-rw-r--r--lldb/tools/driver/Driver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp
index 1f5e485f2b8..8ce6da95ecc 100644
--- a/lldb/tools/driver/Driver.cpp
+++ b/lldb/tools/driver/Driver.cpp
@@ -1251,13 +1251,13 @@ Driver::MainLoop ()
if (num_args > 1)
{
- m_debugger.HandleCommand ("settings clear target.process.run-args");
+ m_debugger.HandleCommand ("settings clear target.run-args");
char arg_cstr[1024];
for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx)
{
::snprintf (arg_cstr,
sizeof(arg_cstr),
- "settings append target.process.run-args \"%s\"",
+ "settings append target.run-args \"%s\"",
m_option_data.m_args[arg_idx].c_str());
m_debugger.HandleCommand (arg_cstr);
}
OpenPOWER on IntegriCloud