You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently attempting to cross-compile the stdlib for Android using a macOS host. One snag is that apple/swift/CMakeLists.txt adds a SourceKit target if the host machine is Darwin, and does not add it if the host is Linux. I should be able to turn SourceKit builds on or off via the build-script.
Following the project's convention, this should probably be an option named --skip-build-sourcekit. On Linux, utils/build-script should pass this option by default. On Darwin, it should not.
The text was updated successfully, but these errors were encountered:
Apparently my approach isn't ideal here. Others should feel free to try to do it right, I might not be able to update my pull request for another few days.
Additional Detail from JIRA
md5: 9e97a17cc680616ce092d753d43de0a3
Issue Description:
I'm currently attempting to cross-compile the stdlib for Android using a macOS host. One snag is that
apple/swift/CMakeLists.txt
adds a SourceKit target if the host machine is Darwin, and does not add it if the host is Linux. I should be able to turn SourceKit builds on or off via the build-script.Following the project's convention, this should probably be an option named
--skip-build-sourcekit
. On Linux,utils/build-script
should pass this option by default. On Darwin, it should not.The text was updated successfully, but these errors were encountered: