Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 41522a0

Browse files
author
Alex Belozierov
committed
- Removed 32-bit support
1 parent 19e8f99 commit 41522a0

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ DispatchQueue.main.startCoroutine {
7373

7474
### Requirements
7575

76+
- Support only 64-bit architectures
7677
- iOS 10+ / macOS 10.12+ / Ubuntu
7778
- Xcode 10.4+
7879
- Swift 5.2+

SwiftCoroutine.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,6 +1058,7 @@
10581058
SDKROOT = iphoneos;
10591059
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
10601060
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1061+
VALID_ARCHS = "arm64 arm64e";
10611062
VERSIONING_SYSTEM = "apple-generic";
10621063
VERSION_INFO_PREFIX = "";
10631064
};
@@ -1114,6 +1115,7 @@
11141115
SDKROOT = iphoneos;
11151116
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
11161117
VALIDATE_PRODUCT = YES;
1118+
VALID_ARCHS = "arm64 arm64e";
11171119
VERSIONING_SYSTEM = "apple-generic";
11181120
VERSION_INFO_PREFIX = "";
11191121
};
@@ -1244,6 +1246,7 @@
12441246
SWIFT_ENFORCE_EXCLUSIVE_ACCESS = on;
12451247
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
12461248
SWIFT_VERSION = 5.0;
1249+
VALID_ARCHS = x86_64;
12471250
};
12481251
name = Debug;
12491252
};
@@ -1278,6 +1281,7 @@
12781281
SWIFT_ENFORCE_EXCLUSIVE_ACCESS = off;
12791282
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
12801283
SWIFT_VERSION = 5.0;
1284+
VALID_ARCHS = x86_64;
12811285
};
12821286
name = Release;
12831287
};
@@ -1298,6 +1302,7 @@
12981302
PROVISIONING_PROFILE_SPECIFIER = "";
12991303
SDKROOT = macosx;
13001304
SWIFT_VERSION = 5.0;
1305+
VALID_ARCHS = x86_64;
13011306
};
13021307
name = Debug;
13031308
};
@@ -1318,6 +1323,7 @@
13181323
PROVISIONING_PROFILE_SPECIFIER = "";
13191324
SDKROOT = macosx;
13201325
SWIFT_VERSION = 5.0;
1326+
VALID_ARCHS = x86_64;
13211327
};
13221328
name = Release;
13231329
};

0 commit comments

Comments
 (0)