M芯片 Xcode 构建 react-native 报错 OBJC CLASS_$_
前几天花巨资买了一台M1 Pro + 32G RAM + 1T SSD
。
不要问我为什么,新款的M4 Pro
得三万多块,我家里不是开矿的。
不多废话,开始看报错 …
M芯片 Xcode 构建 react-native 报错 OBJC CLASS_$_
前几天花巨资买了一台M1 Pro + 32G RAM + 1T SSD
。
不要问我为什么,新款的M4 Pro
得三万多块,我家里不是开矿的。
不多废话,开始看报错 …
react-native pod install 失败问题汇总
0.76.3
报错 …这个具体的报错信息没给,参考
https://github.com/facebook/react-native/issues/34189
Debugging this issue on my M1 mac, I discovered that I had
never set my git config to use the correct line endings for *nix on macOS.UPDATE: I had actually forgotten to unset them after working with a repo with Windows line endings. This means they were set togit config --global core.autocrlf true
which is the setting for windows.
This is the correct setting for linux/mac.
|
You can also unset
them and use the default which is false
|
After this, you will need to normalize all the line endings in the project (unless you want to re-clone).
https://stackoverflow.com/a/13154031
After you have done the configuration, you might want git to normalize all the files in the repo. To do this, go to to the root of your repo and run these commands:
|
If you now want git to also normalize the files in your working directory, run these commands:
|
There are some .bat
files for windows that you will not want to change, so discard those.
Once you have done these steps, you shouldn’t need any of the custom workarounds in this thread.
Originally posted by @shwanton in https://github.com/facebook/react-native/issues/34189#issuecomment-1502532287