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

Commit 0b688de

Browse files
author
Alex Belozierov
committed
- fix for XCFramework
1 parent d1fc1da commit 0b688de

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

Sources/SwiftCoroutine/Helpers/PsxLock.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import Darwin
1616

1717
@usableFromInline internal let mutex: UnsafeMutablePointer<pthread_mutex_t>
1818

19-
@inlinable internal init() {
19+
@usableFromInline internal init() {
2020
mutex = .allocate(capacity: 1)
2121
pthread_mutex_init(mutex, nil)
2222
}

SwiftCoroutine.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,7 @@
954954
F8CD259720199CF700952299 /* Debug */ = {
955955
isa = XCBuildConfiguration;
956956
buildSettings = {
957+
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
957958
CODE_SIGN_IDENTITY = "";
958959
CODE_SIGN_STYLE = Manual;
959960
DEFINES_MODULE = YES;
@@ -981,6 +982,7 @@
981982
F8CD259820199CF700952299 /* Release */ = {
982983
isa = XCBuildConfiguration;
983984
buildSettings = {
985+
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
984986
CODE_SIGN_IDENTITY = "";
985987
CODE_SIGN_STYLE = Manual;
986988
DEFINES_MODULE = YES;
@@ -1045,6 +1047,7 @@
10451047
F8CD25B420199D1000952299 /* Debug */ = {
10461048
isa = XCBuildConfiguration;
10471049
buildSettings = {
1050+
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
10481051
CODE_SIGN_IDENTITY = "";
10491052
CODE_SIGN_STYLE = Manual;
10501053
COMBINE_HIDPI_IMAGES = YES;
@@ -1075,6 +1078,7 @@
10751078
F8CD25B520199D1000952299 /* Release */ = {
10761079
isa = XCBuildConfiguration;
10771080
buildSettings = {
1081+
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
10781082
CODE_SIGN_IDENTITY = "";
10791083
CODE_SIGN_STYLE = Manual;
10801084
COMBINE_HIDPI_IMAGES = YES;

0 commit comments

Comments
 (0)