在RN 運行時,出現問題
react-native run-ios Could not find iPhone 6 simulator 和 Entry, ":CFBundleIdentifier", Does Not Exist
在解決這個問題時,
./configure
編譯不了 報錯,
configure: error: cannot run C compiled programs
解決辦法:
需要使用--host參數來選擇目標環境。
在交叉編譯arm板上時,使用--host=arm
./configure --host=arm
解決問題, 來源:https://blog.csdn.net/llljjlj/article/details/101540888