Skip to content

Commit 07b7a5d

Browse files
authored
Get Swift-Foundation building for Musl/Static SDK (#838)
* Get FoundationEssentials building Adding the missing musl imports to get FoundationEssentials building for the Swift static SDKs again. Also providing an option to disable building the macros. The macros aren't necessary for building the library and will not be run as part of the static SDK. No need to bloat the SDK or build times further. For Swift 6, the macros should be provided by the toolchain since the toolchain and SDK are current revlocked due to swiftmodules. * Get FoundationInternationalization building Adding the missing Musl imports to get FoundationInternationalization building for the static SDK.
1 parent eb3e4bc commit 07b7a5d

27 files changed

+68
-10
lines changed

Sources/FoundationEssentials/Calendar/Calendar.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ internal import os
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif canImport(CRT)
2022
import CRT
2123
#endif

Sources/FoundationEssentials/Calendar/Calendar_Gregorian.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ internal import os
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif canImport(CRT)
2022
import CRT
2123
#endif

Sources/FoundationEssentials/Data/Data+Reading.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import Darwin
2222
import Android
2323
#elseif canImport(Glibc)
2424
import Glibc
25+
#elseif canImport(Musl)
26+
import Musl
2527
#elseif os(Windows)
2628
import CRT
2729
import WinSDK
@@ -30,7 +32,7 @@ import WinSDK
3032
func _fgetxattr(_ fd: Int32, _ name: UnsafePointer<CChar>!, _ value: UnsafeMutableRawPointer!, _ size: Int, _ position: UInt32, _ options: Int32) -> Int {
3133
#if canImport(Darwin)
3234
return fgetxattr(fd, name, value, size, position, options)
33-
#elseif canImport(Glibc)
35+
#elseif canImport(Glibc) || canImport(Musl)
3436
return fgetxattr(fd, name, value, size)
3537
#else
3638
return -1

Sources/FoundationEssentials/Data/Data+Writing.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ import Android
2424
import unistd
2525
#elseif canImport(Glibc)
2626
import Glibc
27+
#elseif canImport(Musl)
28+
import Musl
2729
#elseif os(Windows)
2830
import CRT
2931
import WinSDK
@@ -623,7 +625,7 @@ private func writeExtendedAttributes(fd: Int32, attributes: [String : Data]) {
623625
// Returns non-zero on error, but we ignore them
624626
#if canImport(Darwin)
625627
_ = fsetxattr(fd, key, valueBuf.baseAddress!, valueBuf.count, 0, 0)
626-
#elseif canImport(Glibc)
628+
#elseif canImport(Glibc) || canImport(Musl)
627629
_ = fsetxattr(fd, key, valueBuf.baseAddress!, valueBuf.count, 0)
628630
#endif
629631
}

Sources/FoundationEssentials/Date.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Bionic
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif canImport(WinSDK)
2022
import WinSDK
2123
#endif

Sources/FoundationEssentials/Decimal/Decimal+Math.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif canImport(CRT)
2022
import CRT
2123
#endif

Sources/FoundationEssentials/Error/CocoaError+FilePath.swift

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import Darwin
1919
import Bionic
2020
#elseif canImport(Glibc)
2121
import Glibc
22+
#elseif canImport(Musl)
23+
import Musl
2224
#elseif os(Windows)
2325
import CRT
2426
import WinSDK

Sources/FoundationEssentials/Error/ErrorCodes+POSIX.swift

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
@preconcurrency import Android
1515
#elseif canImport(Glibc)
1616
@preconcurrency import Glibc
17+
#elseif canImport(Musl)
18+
@preconcurrency import Musl
1719
#elseif canImport(Darwin)
1820
@preconcurrency import Darwin
1921
#elseif os(Windows)

Sources/FoundationEssentials/FileManager/FileManager+Basics.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif os(Windows)
2022
import CRT
2123
import WinSDK

Sources/FoundationEssentials/FileManager/FileManager+Directories.swift

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ import Android
2323
import unistd
2424
#elseif canImport(Glibc)
2525
import Glibc
26+
#elseif canImport(Musl)
27+
import Musl
2628
#elseif os(Windows)
2729
import CRT
2830
import WinSDK

Sources/FoundationEssentials/FileManager/FileManager+Files.swift

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ import posix_filesystem
2323
#elseif canImport(Glibc)
2424
import Glibc
2525
internal import _FoundationCShims
26+
#elseif canImport(Musl)
27+
import Musl
28+
internal import _FoundationCShims
2629
#elseif os(Windows)
2730
import CRT
2831
import WinSDK

Sources/FoundationEssentials/FileManager/FileManager+SymbolicLinks.swift

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ import Android
1717
import unistd
1818
#elseif canImport(Glibc)
1919
import Glibc
20+
#elseif canImport(Musl)
21+
import Musl
2022
#elseif os(Windows)
2123
import CRT
2224
import WinSDK

Sources/FoundationEssentials/FileManager/FileManager+Utilities.swift

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ import Android
2828
#elseif canImport(Glibc)
2929
import Glibc
3030
internal import _FoundationCShims
31+
#elseif canImport(Musl)
32+
import Musl
33+
internal import _FoundationCShims
3134
#elseif os(Windows)
3235
import CRT
3336
import WinSDK

Sources/FoundationEssentials/FileManager/FileOperations+Enumeration.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ import posix_filesystem.dirent
115115
#elseif canImport(Glibc)
116116
import Glibc
117117
internal import _FoundationCShims
118+
#elseif canImport(Musl)
119+
import Musl
120+
internal import _FoundationCShims
118121
#endif
119122

120123
// MARK: Directory Iteration
@@ -318,7 +321,7 @@ extension Sequence<_FTSSequence.Element> {
318321
struct _POSIXDirectoryContentsSequence: Sequence {
319322
#if canImport(Darwin)
320323
typealias DirectoryEntryPtr = UnsafeMutablePointer<DIR>
321-
#elseif os(Android) || canImport(Glibc)
324+
#elseif os(Android) || canImport(Glibc) || canImport(Musl)
322325
typealias DirectoryEntryPtr = OpaquePointer
323326
#endif
324327

Sources/FoundationEssentials/FileManager/FileOperations.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif os(Windows)
2022
import CRT
2123
import WinSDK

Sources/FoundationEssentials/Formatting/BinaryInteger+NumericStringRepresentation.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif os(Windows)
2022
import CRT
2123
#endif

Sources/FoundationEssentials/LockedState.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ internal import C.os.lock
1919
import Bionic
2020
#elseif canImport(Glibc)
2121
import Glibc
22+
#elseif canImport(Musl)
23+
import Musl
2224
#elseif canImport(WinSDK)
2325
import WinSDK
2426
#endif
@@ -29,7 +31,7 @@ package struct LockedState<State> {
2931
private struct _Lock {
3032
#if canImport(os)
3133
typealias Primitive = os_unfair_lock
32-
#elseif os(Android) || canImport(Glibc)
34+
#elseif os(Android) || canImport(Glibc) || canImport(Musl)
3335
typealias Primitive = pthread_mutex_t
3436
#elseif canImport(WinSDK)
3537
typealias Primitive = SRWLOCK

Sources/FoundationEssentials/Platform.swift

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ fileprivate let _pageSize: Int = Int(getpagesize())
3535
#elseif canImport(Glibc)
3636
import Glibc
3737
fileprivate let _pageSize: Int = Int(getpagesize())
38+
#elseif canImport(Musl)
39+
import Musl
40+
fileprivate let _pageSize: Int = Int(getpagesize())
3841
#elseif canImport(C)
3942
fileprivate let _pageSize: Int = Int(getpagesize())
4043
#endif // canImport(Darwin)

Sources/FoundationEssentials/ProcessInfo/ProcessInfo.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import Bionic
1919
import unistd
2020
#elseif canImport(Glibc)
2121
import Glibc
22+
#elseif canImport(Musl)
23+
import Musl
2224
#elseif os(Windows)
2325
import WinSDK
2426
#endif
@@ -161,7 +163,7 @@ final class _ProcessInfo: Sendable {
161163
}
162164

163165
var userName: String {
164-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
166+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
165167
// Darwin and Linux
166168
let (euid, _) = Platform.getUGIDs()
167169
if let upwd = getpwuid(euid),
@@ -196,7 +198,7 @@ final class _ProcessInfo: Sendable {
196198
}
197199

198200
var fullUserName: String {
199-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
201+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
200202
let (euid, _) = Platform.getUGIDs()
201203
if let upwd = getpwuid(euid),
202204
let fullname = upwd.pointee.pw_gecos {

Sources/FoundationEssentials/PropertyList/OpenStepPlist.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import Bionic
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#endif
2022

2123
#if canImport(CRT)

Sources/FoundationEssentials/String/String+Path.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ internal import os
1616
import Android
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif os(Windows)
2022
import WinSDK
2123
#endif

Sources/FoundationEssentials/TimeZone/TimeZone_Cache.swift

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import Darwin
1616
import unistd
1717
#elseif canImport(Glibc)
1818
import Glibc
19+
#elseif canImport(Musl)
20+
import Musl
1921
#elseif canImport(ucrt)
2022
import ucrt
2123
#endif

Sources/FoundationEssentials/_ThreadLocal.swift

+6-4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ import Darwin
1515
import Bionic
1616
#elseif canImport(Glibc)
1717
import Glibc
18+
#elseif canImport(Musl)
19+
import Musl
1820
#elseif canImport(WinSDK)
1921
import WinSDK
2022
#elseif canImport(threads_h)
@@ -24,7 +26,7 @@ internal import threads
2426
#endif
2527

2628
struct _ThreadLocal {
27-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
29+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
2830
fileprivate typealias PlatformKey = pthread_key_t
2931
#elseif USE_TSS
3032
fileprivate typealias PlatformKey = tss_t
@@ -36,7 +38,7 @@ struct _ThreadLocal {
3638
fileprivate let key: PlatformKey
3739

3840
init() {
39-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
41+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
4042
var key = PlatformKey()
4143
pthread_key_create(&key, nil)
4244
self.key = key
@@ -52,7 +54,7 @@ struct _ThreadLocal {
5254

5355
private static subscript(_ key: PlatformKey) -> UnsafeMutableRawPointer? {
5456
get {
55-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
57+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
5658
pthread_getspecific(key)
5759
#elseif USE_TSS
5860
tss_get(key)
@@ -62,7 +64,7 @@ struct _ThreadLocal {
6264
}
6365

6466
set {
65-
#if canImport(Darwin) || os(Android) || canImport(Glibc)
67+
#if canImport(Darwin) || os(Android) || canImport(Glibc) || canImport(Musl)
6668
pthread_setspecific(key, newValue)
6769
#elseif USE_TSS
6870
tss_set(key, newValue)

Sources/FoundationInternationalization/Calendar/Calendar_ICU.swift

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ import FoundationEssentials
1818
import Android
1919
#elseif canImport(Glibc)
2020
import Glibc
21+
#elseif canImport(Musl)
22+
import Musl
2123
#elseif canImport(CRT)
2224
import CRT
2325
#elseif canImport(Darwin)

Sources/FoundationInternationalization/Date+ICU.swift

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ internal import _FoundationICU
1919
import Android
2020
#elseif canImport(Glibc)
2121
import Glibc
22+
#elseif canImport(Musl)
23+
import Musl
2224
#elseif canImport(Darwin)
2325
import Darwin
2426
#endif

Sources/FoundationInternationalization/Formatting/Date/ICUDateFormatter.swift

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import Darwin
2222
import Android
2323
#elseif canImport(Glibc)
2424
import Glibc
25+
#elseif canImport(Musl)
26+
import Musl
2527
#endif
2628

2729
typealias UChar = UInt16

Sources/FoundationInternationalization/Formatting/Duration+Formatting.swift

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import Darwin
2020
import Android
2121
#elseif canImport(Glibc)
2222
import Glibc
23+
#elseif canImport(Musl)
24+
import Musl
2325
#elseif os(Windows)
2426
import CRT
2527
#endif

0 commit comments

Comments
 (0)