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
With swift 6, one can create Static Linux SDK. https://www.swift.org/documentation/articles/static-linux-getting-started.html
But, we need to change the direct dependency on GLibc to dependency on both Glibc and Musl.
So, in the different files TOMLArray.swift, TOMLTable.swift, ...:
#if canImport(Darwin) import Darwin.C #elseif canImport(Glibc) import Glibc #elseif canImport(Musl) import Musl #elseif canImport(ucrt) import ucrt #else #error("Unsupported Platform") #endif
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion! I'll create a PR for this and have it as part of the next minor release.
Sorry, something went wrong.
No branches or pull requests
With swift 6, one can create Static Linux SDK.
https://www.swift.org/documentation/articles/static-linux-getting-started.html
But, we need to change the direct dependency on GLibc to dependency on both Glibc and Musl.
So, in the different files TOMLArray.swift, TOMLTable.swift, ...:
The text was updated successfully, but these errors were encountered: