[Lldb-commits] [PATCH] D81290: Fix an oversight in GetXcodeContentsDirectory()
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 5 14:05:43 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGad4e7b9dc82b: Fix an oversight in GetXcodeContentsDirectory() (authored by aprantl).
Herald added a project: LLDB.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81290/new/
https://reviews.llvm.org/D81290
Files:
lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
Index: lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
===================================================================
--- lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
+++ lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
@@ -326,9 +326,9 @@
}
}
- std::string env_developer_dir = GetEnvDeveloperDir();
+ llvm::SmallString<128> env_developer_dir(GetEnvDeveloperDir());
if (!env_developer_dir.empty()) {
- // FIXME: This looks like it couldn't possibly work!
+ llvm::sys::path::append(env_developer_dir, "Contents");
std::string xcode_contents_dir =
XcodeSDK::FindXcodeContentsDirectoryInPath(env_developer_dir);
if (!xcode_contents_dir.empty()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D81290.268936.patch
Type: text/x-patch
Size: 714 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200605/26ea4a7b/attachment.bin>
More information about the lldb-commits
mailing list