-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
64 bit arm not supported #86
Comments
Good catch.. the fix should be as easy as adding a check for I have no way to test this. Would you be willing to fork and make the edit and see if it works as expected? 🙏 |
Will do! |
Also worth noting, there is an effort right now to increase the availability of This repo is due for a refactor and a new major release, I've been holding off in hopes that osx and arm binaries are made available so these sort of issues become less-so.... |
Ok, it's compiling.. since about 30 minutes (and it shows 21%). Compiling on an ARM seems not to be the best idea :D First thing learned: Maybe binary filenames should be postfixed with architecture. If file |
Next thing learned: Don't try it with only 1GB RAM. |
:) What about a release now? |
#89 incoming |
https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v0.10.1 thanks for all your help with this release! |
Sure! And thanks for reacting so quickly! Update is already installed, will test now. |
Downloaded the tar.gz file and ran the "pip install py-solc-x" command on Raspberry Pi 4 terminal. However, the installation is still not successful. May someone please advise as to what steps should be taken? Thank you! |
Environment information
py-solc-x
Version: 0.10.0solc
Version: 0.6.1What was wrong?
According to release
v0.10.0
, arm architectures should be supported. However, it seems that this support is only limited to 32 bit arm architectures.Code is checking for
platform.machine() ^= "arm"
, but on my Raspberry Pi 3 B+ with Ubuntu/64 bit support,platform.machine()
returnsaarch64
.The text was updated successfully, but these errors were encountered: