mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Driver] Allow passing all source files in a filelist.
Generate frontend commands with -filelist in them. This isn't actually implemented yet, but we can start testing at this point. Part 1 of https://bugs.swift.org/browse/SR-280.
This commit is contained in:
@@ -1855,10 +1855,9 @@ Job *Driver::buildJobsForAction(Compilation &C, const JobAction *JA,
|
||||
}
|
||||
|
||||
// 4. Construct a Job which produces the right CommandOutput.
|
||||
std::unique_ptr<Job> ownedJob = TC.constructJob(*JA, std::move(InputJobs),
|
||||
std::move(Output),
|
||||
InputActions, C.getArgs(),
|
||||
C.getInputFiles(), OI);
|
||||
std::unique_ptr<Job> ownedJob = TC.constructJob(*JA, C, std::move(InputJobs),
|
||||
InputActions,
|
||||
std::move(Output), OI);
|
||||
Job *J = C.addJob(std::move(ownedJob));
|
||||
|
||||
// If we track dependencies for this job, we may be able to avoid running it.
|
||||
|
||||
Reference in New Issue
Block a user