You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The info object collects information across the build phase so that an ibtool task doesn't try to produce a ~device output which is already being explicitly produced from another input.
/// Used for platforms where a numeric `UIDeviceFamily` value is not used, but a device family name must still be passed to asset processing tools via the `--target-device` flag. Mutually exclusive with `deviceFamiliesByIdentifier`.
@@ -143,8 +145,8 @@ public final class Core: Sendable {
143
145
144
146
// FIXME: <rdar://problem/36364112> We should also perform late binding of the toolchains' settings here. Presently this is done when a Settings object which uses a toolchain is constructed.
145
147
146
-
// Force loading the CoreSettings (which can emit errors about missing required specs).
147
-
let _ =core.coreSettings
148
+
// Initialize the CoreSettings (which can emit errors about missing required specs).
Copy file name to clipboardExpand all lines: Sources/SWBCore/FileToBuild.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ public import SWBProtocol
15
15
publicimport SWBMacro
16
16
17
17
/// Represents a file to be passed as input to some part of the build machinery. May be a source file originally sent down with the PIF, or might be a temporary file. Once a build rule action has been determined, it is assigned to the FileToBuild so it doesn’t have to be looked up again. Note that the term “file” here is used in the loosest sense — the path can refer to any file system entity.
0 commit comments