Index: lldb/lit/Process/TestEnvironment.test =================================================================== --- /dev/null +++ lldb/lit/Process/TestEnvironment.test @@ -0,0 +1,8 @@ +UNSUPPORTED: system-windows + +The double quotes around "BAR" ensure we don't match the command. + +RUN: %lldb /usr/bin/env -o 'process launch --environment FOO="BAR"' | FileCheck %s +RUN: %lldb /usr/bin/env -o 'env FOO="BAR"' -o 'process launch' | FileCheck %s + +CHECK: FOO=BAR Index: lldb/source/Commands/CommandObjectProcess.cpp =================================================================== --- lldb/source/Commands/CommandObjectProcess.cpp +++ lldb/source/Commands/CommandObjectProcess.cpp @@ -193,7 +193,10 @@ if (target->GetDisableSTDIO()) m_options.launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO); - m_options.launch_info.GetEnvironment() = target->GetEnvironment(); + // Merge the launch info environment with the target environment. + Environment target_env = target->GetEnvironment(); + m_options.launch_info.GetEnvironment().insert(target_env.begin(), + target_env.end()); if (!target_settings_argv0.empty()) { m_options.launch_info.GetArguments().AppendArgument(