Created
September 6, 2022 19:10
-
-
Save karloscarweber/f961dd02d2467793ca0b1e0347b97447 to your computer and use it in GitHub Desktop.
Fix RVM Install on M1 Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I often have issues when installing ruby, through rvm, onto an M1 mac. | |
# It's usually this one problem. But installing with the follwing command almost always works: | |
# reference: https://github.com/rvm/rvm/issues/5043#issuecomment-811891226 | |
```bash | |
CFLAGS="-Wno-error=implicit-function-declaration" rvm install 2.6.6 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment