Merge pull request #84442 from cachemeifyoucan/eng/PR-issue-84088

[Caching] Allow prefix mapping for generated bridging header
This commit is contained in:
Steven Wu
2025-09-25 15:10:29 -07:00
committed by GitHub
16 changed files with 241 additions and 82 deletions

View File

@@ -583,9 +583,9 @@ bool extractCompilerFlagsFromInterface(
llvm::VersionTuple extractUserModuleVersionFromInterface(StringRef moduleInterfacePath);
/// Extract embedded bridging header from binary module.
std::string
std::unique_ptr<llvm::MemoryBuffer>
extractEmbeddedBridgingHeaderContent(std::unique_ptr<llvm::MemoryBuffer> file,
ASTContext &Context);
StringRef headerPath, ASTContext &Context);
} // end namespace swift
#endif