-
-
Notifications
You must be signed in to change notification settings - Fork 8k
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
Describe another failure case for installing node versions from source on mac arm64 machines #2653
Conversation
…rom source on mac arm64 machines. It seems to be related to nodejs/node#39313 (which describes a similar issue).
This change doesn’t explain how one can solve it nor where one can look to track a solution. |
That's correct, it doesn't. The other 'Some issues you may encounter' above this in the README also do not track a solution. And the "solution" immediately below this in the README also applies to this issue. |
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.
fair enough
FWIW, this comment is misleading. The "solution" that follows this new line in the README does not apply to the addition found in this PR. This comment in the related issue mentions that problem described does not appear with arm64 but does appear with x64. So trying to install with using the x64 architecture actually induces the problem described in this PR. I just spent several hours trying and retrying variations the solution mentioned here, but I found the line added in this PR unhelpful because it led me to believe that the following lines would help me, when they really didn't. I was experiencing what is described in this PR, (after For any others that come across this, the workaround that I ended up using to successfully install an older version of Node (Node 12.22.1) was pretty much stolen from this commit in pkg-fetch. I changed this line to the following:
After that, I could |
@lukelafountaine i'd be happy to accept PRs with further improvements. |
A third kind of error that may or may not be worth documenting?
To avoid this i'm thinking to compile with rosetta |
Describe another failure case for installing node versions from source on mac arm64 machines.
It seems to be related to nodejs/node#39313 (which describes a similar issue).