Skip to content

Commit

Permalink
Android build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoward committed Nov 20, 2024
1 parent 3d4a9e1 commit 7d9841d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Sources/AllocatedLock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,14 @@ extension AllocatedLock {
}
}

#elseif canImport(Glibc) || canImport(Musl)
#elseif canImport(Glibc) || canImport(Musl) || canImport(Bionic)

#if canImport(Musl)
import Musl
#else
#elseif canImport(Glibc)
import Glibc
#elseif canImport(Bionic)
import Bionic
#endif

extension AllocatedLock {
Expand Down

0 comments on commit 7d9841d

Please sign in to comment.