[Dependency Scanning] Deprecate/Remove batch scanning capability

Batch dependency scanning was added as a mechanism to support multiple compilation contexts within a single module dependency graph.
The Swift compiler and the Explicitly-built modules model has long since abandoned this approach and this code has long been stale. It is time to remove it and its associated C API.
This commit is contained in:
Artem Chikin
2024-11-19 13:31:45 -08:00
parent eb1ea4e329
commit 41e471288a
18 changed files with 4 additions and 692 deletions

View File

@@ -2280,8 +2280,6 @@ static bool ParseSearchPathArgs(SearchPathOptions &Opts, ArgList &Args,
}
if (const Arg *A = Args.getLastArg(OPT_placeholder_dependency_module_map))
Opts.PlaceholderDependencyModuleMap = A->getValue();
if (const Arg *A = Args.getLastArg(OPT_batch_scan_input_file))
Opts.BatchScanInputFilePath = A->getValue();
if (const Arg *A = Args.getLastArg(OPT_const_gather_protocols_file))
Opts.ConstGatherProtocolListFilePath = A->getValue();