-
-
Notifications
You must be signed in to change notification settings - Fork 256
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
Unable to install any Ruby versions after updating to macOS 12.6 on Apple Silicon #430
Comments
The other difference between the iMac and Intel MacBook Air is that the Air had a clean dev setup, but not the iMac. I will try resetting the iMac later and report back. |
I did some more research and found the exact same error with https://bugs.ruby-lang.org/issues/18912 They ran into it with macOS 13 Ventura Beta, which was using Xcode 14 Beta. And now macOS 12.6 uses Xcode 14 as well, which is why we're seeing this issue now. In the Ruby bug report, they say the fix is to add these configuration flags: I tried to compile Ruby manually again with these new flags, but it still didn't work. Then I realized that maybe the first flag wasn't supposed to be used as written in the bug report, but maybe as two separate flags: Here is the whole configuration I used:
So then I tried using those flags with ruby-install:
And it worked! 🎉 |
Looks like this is not needed:
Note that this only works for 2.7.x and above. I was not able to install 2.6.9 or 2.6.10 with these flags. |
While that works in terms of installing Ruby, it breaks Rails apps because they need |
Aha! It looks like the |
Here's a more detailed blog post for anyone running into this: https://www.rubyonmac.dev/how-to-install-ruby-on-macos-12-6-apple-silicon/ Also, I'll note that I was able to install 3.2.0-preview2 without having to add any special flags, so it looks like this issue is resolved upstream. Hopefully, they will port it back to 2.7.7. |
@monfresh this patch back ports the fix. ruby/ruby#6440 I expect it will be merged soon. |
@havenwood Thanks for the update! Do you know if it will be backported to 2.7 as well, or just 3.1? |
ruby/ruby#6440 is different changesets from 3.2.0-preview2. We already merged patch same as preview2 to 2.7 to 3.1 branches. ruby/ruby#6440 is the additional fix for Ventura and Xcode14. We have a plan to merge them to 2.7-3.1 and release a new stable versions. |
🙏🏻 Thx a ton @monfresh for troubleshooting this issue. |
@hsbt I hope so. Some of us are forced to support Ruby at work as old as 2.4 because it's in production. On the plus side, it's not like the 1.8.7 forks that lived on forever. :) At home, it's nice to have the luxuries of 3.1 to HEAD mjit and rbs. |
@steakknife I find that first statement fascinating. Are you saying that because an app is using a particular version of Ruby in production, you're stuck using that version forever? What is preventing you from updating to newer Ruby versions? |
I'm having this issue on MBP M1 running MacOS 13.0.1 and can't install Ruby 2.6.10 with any of the solutions here. Any ideas?
GEM ENV
|
Hi @lacostenycoder. That is a known issue with v14+ of Apple's command line tools. I wrote an article that goes over all the possible solutions: https://www.rubyonmac.dev/how-to-install-ruby-2-6-on-macos-13-ventura |
I just ran into this same issue trying to install 3.1.2 with OS 12.6.3 on M1. I had ruby 3.1.3 installed already, but was unable to compile 3.1.2 using
Also hey @monfresh :D 👋 |
Hey @yuletide! I'm glad it worked, but I'm curious why you needed to install 3.1.2 instead of updating your project to 3.1.3. |
@monfresh Client work... they were already all setup using 3.1.2. |
I updated to macOS 12.6 on 3 of my Macs: 2 of them Intel, and one of them Apple Silicon (M1 MacBook Air, 2020).
I am able to install Ruby 2.7.6 and 3.1.2 with
ruby-install
on the Intel machines, but I can't anymore on the M1 Air. It fails withld: symbol(s) not found for architecture arm64
. Here is an excerpt from the end:I've also attached the full log.
So then I tried compiling Ruby manually, and it failed after the first
make
with the same error:I even reset my entire dev setup (uninstalled Homebrew, removed the command line tools, removed all Ruby-related folders, etc.), and reinstalled everything from scratch.
So then I tried rbenv, and it worked just fine. Any ideas what rbenv/ruby-build might be doing differently?
Could it be something with the
./configure
options?So then I tried installing 2.6.10 on my Intel machines, and it failed on my iMac with
ruby-install
, but it worked withrbenv
. However, it failed withrbenv
on Apple Silicon. To make things more confusing, it worked on my Intel MacBook Air with bothruby-install
andrbenv
! The difference is that the iMac used to be on macOS 12.5.1, and the Intel Air was upgraded to Monterey from Big Sur.I know this used to work before, so something must have changed with macOS 12.6.
Interestingly, 2.6.9 works on the Intel iMac (the one where 2.6.10 failed) with
ruby-install
.Any ideas?
ruby-install-failure.txt
The text was updated successfully, but these errors were encountered: