Skip to content

Commit eb9de53

Browse files
committed
Fixed build phases order in target
See [Xcode 10's known issues](https://developer.apple.com/documentation/xcode-release-notes/build-system-release-notes-for-xcode-10) in the release notes: > Targets with Copy Headers build phases ordered after Compile Sources build phases may fail to build and emit a diagnostic regarding build cycles. (39880168) >*Workaround*: Arrange any Copy Headers build phases before Compile Sources build phases. This has been an issue for nearly 4 years, and now with Xcode 13.3 it leads to `XCBBuildService` to crash consistently.
1 parent b686b17 commit eb9de53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Socket.IO-Client-Swift.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,9 @@
344344
isa = PBXNativeTarget;
345345
buildConfigurationList = 572EF24B1B51F18A00EEBB58 /* Build configuration list for PBXNativeTarget "SocketIO" */;
346346
buildPhases = (
347+
572EF2351B51F18A00EEBB58 /* Headers */,
347348
572EF2331B51F18A00EEBB58 /* Sources */,
348349
572EF2341B51F18A00EEBB58 /* Frameworks */,
349-
572EF2351B51F18A00EEBB58 /* Headers */,
350350
572EF2361B51F18A00EEBB58 /* Resources */,
351351
);
352352
buildRules = (

0 commit comments

Comments
 (0)