Skip to content

Commit

Permalink
Fix compliation error
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaLikesCheez committed Dec 1, 2023
1 parent de5d42d commit 50de129
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sources/GenIR/OutputPostprocessor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ class OutputPostprocessor {
/// The to the output IR folders that will be processed
let output: URL

/// The archive path, this should be the parent path of `output`
let archive: URL

/// Mapping of dynamic dependencies (inside the xcarchive) to their paths on disk
private let dynamicDependencyToPath: [String: URL]

Expand All @@ -29,6 +32,7 @@ class OutputPostprocessor {

init(archive: URL, output: URL, targets: Targets, dumpGraph: Bool) throws {
self.output = output
self.archive = archive

dynamicDependencyToPath = dynamicDependencies(in: self.archive)

Expand Down

0 comments on commit 50de129

Please sign in to comment.