Issues with installing ruby 3.4.1 #2491
-
I have issues with building ruby 3.4.1 on my mac.
Clang info
The full error log
I tried uninstalling conda, but it didn't solve the problem, and similar problems occurred on other versions, is there any other way to check, thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, looks like some issue with the build toolchain on your machine. The output of
You can try Do you have |
Beta Was this translation helpful? Give feedback.
Hi, looks like some issue with the build toolchain on your machine. The output of
clang
looks alright, except that mine (M1 MacBook Pro) shows a different InstalledDir:You can try
sudo xcode-select --reset
to reset the location of the build toolchain used.Do you have
binutils
installed from Homebrew and linked into PATH by any chance? Check withbrew info binutils
. Those are known to sabotage Ruby installs and should never be linked (fix withbrew unlink binutils
). Apart from t…