[Lldb-commits] [PATCH] linux: fix Host definitions
Stephen Wilson
wilsons at start.ca
Fri Dec 17 15:53:52 PST 2010
Ping?
This is the only patch that I did not get a response to so far. I
presume it was overlooked.
Thanks!
Stephen Wilson <wilsons at start.ca> writes:
> Hi all,
>
> This is the first patch in a series I plan on sending to get the Linux
> build back on its feet.
>
> I have roughly 25 patches to send out and would very much appreciate
> some review before they go into the tree. I think I still have commit
> access and would be happy to commit them myself if desired.
>
>
>
>
> Fix definitions of Host::LaunchInNewTerminal and Host::OpenFileInExternalEditor.
>
> Definitions did not agree with the corresponding declarations when
> compiling on non-Apple platforms.
>
>
> diff --git a/source/Host/common/Host.cpp b/source/Host/common/Host.cpp
> index 527d20a..c760aa3 100644
> --- a/source/Host/common/Host.cpp
> +++ b/source/Host/common/Host.cpp
> @@ -877,7 +877,7 @@ Host::GetArchSpecForExistingProcess (const char *process_name)
>
> #if !defined (__APPLE__) // see macosx/Host.mm
> bool
> -Host::OpenFileInExternalEditor (FileSpec &file_spec, uint32_t line_no)
> +Host::OpenFileInExternalEditor (const FileSpec &file_spec, uint32_t line_no)
> {
> return false;
> }
> @@ -901,6 +901,7 @@ LaunchApplication (const FileSpec &app_file_spec)
> lldb::pid_t
> Host::LaunchInNewTerminal
> (
> + const char *tty_name,
> const char **argv,
> const char **envp,
> const ArchSpec *arch_spec,
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
--
steve
More information about the lldb-commits
mailing list