mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Macros] Serialize plugin search paths for LLDB use
rdar://107030743
This commit is contained in:
committed by
Alexis Laferrière
parent
08af8a657f
commit
3ef6087d32
@@ -89,6 +89,15 @@ static bool validateModule(
|
||||
llvm::outs() << ", system=" << (searchPath.IsSystem ? "true" : "false")
|
||||
<< "\n";
|
||||
}
|
||||
llvm::outs() << "- Macro Search Paths:\n";
|
||||
for (auto path : extendedInfo.getPluginSearchPaths())
|
||||
llvm::outs() << " -plugin-path: " << path << "\n";
|
||||
for (auto path : extendedInfo.getExternalPluginSearchPaths())
|
||||
llvm::outs() << " -external-plugin-path: " << path << "\n";
|
||||
for (auto path : extendedInfo.getCompilerPluginLibraryPaths())
|
||||
llvm::outs() << " -load-plugin-library: " << path << "\n";
|
||||
for (auto path : extendedInfo.getCompilerPluginExecutablePaths())
|
||||
llvm::outs() << " -load-plugin-executable: " << path << "\n";
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user