Skip to content

Commit 04dc47c

Browse files
committed
Workaround to link Swift Standard Libraries
The Xcode project generate from Unity may not be able to link Swift Standard Libaries properly if 1. Some pods include Swift frameworks 2. Podfile sets to link frameworks statically The workround attempts to fix this by 1. Add a Dummy.swift file to the Xcode project. 2. Enable `CLANG_ENABLE_MODULES` and `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build settings. 3. Change `SWIFT_VERSION` to the value specified in iOS Resolver settings. Default to "5". This workaround is turned OFF by default.
1 parent 56aaa44 commit 04dc47c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

source/IOSResolver/src/IOSResolver.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ public static bool PodfileStaticLinkFrameworks {
10481048
}
10491049

10501050
/// <summary>
1051-
/// Ehether to enable Swift Framework support workaround.
1051+
/// Whether to enable Swift Framework support workaround.
10521052
/// If enabled, iOS Resolver adds a Dummy.swift to the generated Xcode project, and change build
10531053
// properties in order to properly include Swift Standard Libraries.
10541054
/// </summary>
@@ -2030,7 +2030,6 @@ internal static void AddDummySwiftFile(
20302030
public static void OnPostProcessGenPodfile(BuildTarget buildTarget,
20312031
string pathToBuiltProject) {
20322032
if (!InjectDependencies() || !PodfileGenerationEnabled) return;
2033-
Log("OnPostProcessGenPodfile!", level: LogLevel.Error);
20342033
GenPodfile(buildTarget, pathToBuiltProject);
20352034
}
20362035

source/IOSResolver/src/IOSResolverSettingsDialog.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ public void OnGUI() {
284284
settings.swiftLanguageVersion =
285285
EditorGUILayout.TextField(settings.swiftLanguageVersion);
286286
GUILayout.EndHorizontal();
287-
GUILayout.Label("Used to set 'SWIFT_VERSION' build setting in Xcode. Leave " +
288-
"it blank to update it manually.");
287+
GUILayout.Label("Used to override 'SWIFT_VERSION' build setting in Xcode. " +
288+
"Leave it blank to prevent override.");
289289
}
290290
}
291291

0 commit comments

Comments
 (0)