File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 1+ diff --git a/swiftpm/Sources/PackagePlugin/Plugin.swift b/swiftpm/Sources/PackagePlugin/Plugin.swift
2+ index 232543b66..5589c2346 100644
3+ --- a/swiftpm/Sources/PackagePlugin/Plugin.swift
4+ +++ b/swiftpm/Sources/PackagePlugin/Plugin.swift
5+ @@ -595,7 +595,7 @@ fileprivate enum Library: Sendable {
6+ return LibraryHandle(rawValue: handle)
7+ #else
8+ guard let handle = dlopen(nil, RTLD_NOW | RTLD_LOCAL) else {
9+ - throw LibraryOpenError(message: String(cString: dlerror()))
10+ + throw LibraryOpenError(message: String(cString: dlerror()!))
11+ }
12+ return LibraryHandle(rawValue: handle)
13+ #endif
114diff --git a/swift-corelibs-xctest/cmake/modules/PlatformInfo.cmake b/swift-corelibs-xctest/cmake/modules/PlatformInfo.cmake
215index 468dc61..a90ae3d 100644
316--- a/swift-corelibs-xctest/cmake/modules/PlatformInfo.cmake
You can’t perform that action at this time.
0 commit comments