-
Notifications
You must be signed in to change notification settings - Fork 31
Swift 6.2 #73
New issue
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
base: master
Are you sure you want to change the base?
Swift 6.2 #73
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Clang Snapshot Path Mismatch
The script hardcodes a specific snapshot date in the toolchain path for accessing clang
. This conflicts with swiftly install 6.2-snapshot
, which installs the latest available snapshot with a dynamic date. Consequently, the hardcoded directory does not exist, causing the pushd
command and clang
version check to fail. The toolchain name should be dynamically determined, consistent with SWIFT_PATH
export.
build/020-clone-swift.sh#L55-L61
swift-android-toolchain/build/020-clone-swift.sh
Lines 55 to 61 in 7092eda
swiftly install 6.2-snapshot | |
swiftly use 6.2-snapshot | |
pushd .local/share/swiftly/toolchains/6.2-snapshot-2025-07-04/usr/bin/ | |
./clang --version | |
popd |
Was this report helpful? Give feedback by reacting with 👍 or 👎
No description provided.