-
Notifications
You must be signed in to change notification settings - Fork 10
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
Run in unsupported architectures #22
Conversation
How would this work? If you aren't building for amd64 or arm64, what assembly file would the compiler use? |
@@ -28,8 +28,6 @@ import ( | |||
"unsafe" | |||
) | |||
|
|||
func _hash(digests *byte, p [][32]byte, count uint32) |
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.
Why move this?
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.
To make space for an empty implementation in the hash_unsupported. Otherwise there would be two declarations of this function.
It uses sha256_1_generic. |
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.
Nice thanks for the PR, I assume this would be triggered for RISCV, would you care to add a CI evaluator that would run on RISCV and fail without this PR? You can look in the github workflow of this same repo for it.
What about this? https://github.com/prysmaticlabs/gohashtree/pull/23/files |
Took the liberty to add an update of the index before downloading qemu because locally the tests would fail otherwise in my machine |
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.
Thanks so much for this PR @come-maiz !
I've run the tests locally, with and without the PR and also ran them on qemu without the workflow.
Thank you @prestonvanloon and @potuz . |
Fixes #21.