mortimer created this revision. mortimer added a reviewer: krytarowski. Herald added a project: LLDB. Herald added a subscriber: lldb-commits.
Update the OpenBSD Host.cpp for the new SetFile() function signature. Fixes compiling lldb on OpenBSD. Repository: rLLDB LLDB https://reviews.llvm.org/D57907 Files: lldb/source/Host/openbsd/Host.cpp Index: lldb/source/Host/openbsd/Host.cpp =================================================================== --- lldb/source/Host/openbsd/Host.cpp +++ lldb/source/Host/openbsd/Host.cpp @@ -67,8 +67,7 @@ cstr = data.GetCStr(&offset); if (cstr) { - process_info.GetExecutableFile().SetFile(cstr, false, - FileSpec::Style::native); + process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); if (!(match_info_ptr == NULL || NameMatches(
Index: lldb/source/Host/openbsd/Host.cpp =================================================================== --- lldb/source/Host/openbsd/Host.cpp +++ lldb/source/Host/openbsd/Host.cpp @@ -67,8 +67,7 @@ cstr = data.GetCStr(&offset); if (cstr) { - process_info.GetExecutableFile().SetFile(cstr, false, - FileSpec::Style::native); + process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); if (!(match_info_ptr == NULL || NameMatches(
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits