-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[SR-221] Port Swift to Linux aarch64 (arm64) #42843
Comments
This is still broken in binutils 2.26, and broken in gold. |
Comment by Adam Duracz (JIRA) Any news on this? I see some traces of support and, with a patched binutils, building 3.1.1 succeeds, but there are still failed tests. |
Comment by Adam Duracz (JIRA) Let me elaborate. I am working in a DARPA-funded project that is developing a system that depends on having Swift running on an aarch64-based hardware platform running 64-bit Ubuntu Linux 16.04. So far, after patching binutils on the system, we have been able to successfully build Swift, but see 40+ failing test cases (see swift-3.0.2-test.log) when running the Swift test suite. Our system relies on Swift Package Manager, so Swift 3.x is a requirement. Do you know of any way of getting this running on the target platform? We are currently trying to compile a 32-bit version, after seeing signs of success of doing so on a 64-bit RPi platform. Also, if you are aware of the state/perspective of adding support for this at Apple, that would be very helpful. After a suggestion from @hpux735 that several of the failures seem related to reflection, we are planning to start looking at the |
Comment by Ed Vielmetti (JIRA) There is a CI project going to build Swift on arm64, through the Works on Arm project. https://github.com/WorksOnArm/cluster/issues/62 is the open issue, and currently we're blocked on SR-2239 https://bugs.swift.org/browse/SR-2239 `CVaListPointer` does not gets converted to `va_list` on `aarch64` |
Please see Kaiede's Trello board for this work https://trello.com/b/G6lK1Enh/swift-master-on-arm-i686-linux |
Linux aarch64 is supported now. |
Attachment: Download
Additional Detail from JIRA
md5: d82be33062357aafcd2b8854c9a7d6b9
Issue Description:
Swift builds on Linux aarch64. Here are the results of running the primary testsuite (`ninja check-swift`):
(full logs attached)
One of the issues is that existentials of types defined in the standard library don't work: the value witness table pointer in the struct type metadata is null.
Here's a minimal reproducer:
gdb:
What is strange though is that somehow the resulting binary tries to define metadata symbol, but in BSS (?!)
The definition does not exist in the IR.
The symbol looks fine in the library though:
I suspect a bug in binutils.
The text was updated successfully, but these errors were encountered: