-
Notifications
You must be signed in to change notification settings - Fork 5
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
chore: Developer branch for nim #44
base: master
Are you sure you want to change the base?
Conversation
Only nim will be passing tests since I changed the c function names and only modified that code to match. |
c functions needed to be changed because the linker was detecting duplicate symbols with c-kzg (since the c functions are named exactly the same thing) |
@@ -9,7 +9,7 @@ const | |||
|
|||
proc getInstallDir*(): string = | |||
when defined(macosx): | |||
when defined(aarch64) or defined(amd64): | |||
when defined(aarch64) or defined(amd64) or defined(arm64): |
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.
In nimbus, it was returning arm64 instead of aarch64
1c3d0f2
to
fc339dc
Compare
Renaming the methods and the the nim changes can be ported to master |
No description provided.