-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Fix some RISC-V ABI issues and add ILP32/LP64 (soft float) to module tests #21610
Conversation
cc @Rexicon226 |
.{ | ||
.target = std.Target.Query.parse(.{ | ||
.arch_os_abi = "riscv32-linux-none", | ||
.cpu_features = "baseline-d-f", |
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.
(The plan is for this to become a proper ABI in std.Target
with #20690.)
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.
All the changes make sense to me on the RISC-V side of things.
Great! |
Note that I'm not adding ILP32F/LP64F (hard
f32
, softf64
) to the test matrix. They work, but they're used extremely rarely, so I don't think it's worth wasting valuable CI resources on them. For perspective, glibc doesn't support them, and musl needs a patch for them to work, so I doubt anyone cares much.