We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apple is saying here that they are going to use Musl for cross compiling... can you add it please? Thanks https://www.swift.org/documentation/articles/static-linux-getting-started.html
#if os(macOS) || os(iOS) import Darwin #elseif canImport(Glibc) import Glibc #elseif canImport(Musl) import Musl #elseif os(Windows) import ucrt #else #error(Unknown platform) #endif
The text was updated successfully, but these errors were encountered:
It seems there are only three places where we import Glibc, and only two of them need changes?
import Glibc
Sorry, something went wrong.
yes, but principally here: postgres-nio/Sources/ConnectionPoolModule/PoolStateMachine.swift:4:8: error: no such module 'Glibc'
hello, just wanted to know if this was added yet... I had to clone this weeks ago to add it myself while waiting. Thanks!
Why not open a Pull request with your patch? @jasonjurotich
fabianfett
No branches or pull requests
Apple is saying here that they are going to use Musl for cross compiling... can you add it please? Thanks
https://www.swift.org/documentation/articles/static-linux-getting-started.html
#if os(macOS) || os(iOS)
import Darwin
#elseif canImport(Glibc)
import Glibc
#elseif canImport(Musl)
import Musl
#elseif os(Windows)
import ucrt
#else
#error(Unknown platform)
#endif
The text was updated successfully, but these errors were encountered: