web-dev-qa-db-ja.com

configure:エラー:Cコンパイラーは実行可能ファイルを作成できません-React Native

私は反応するネイティブプロジェクトを構築しようとしましたが、エラーが発生しました

React native version:.48.4

Xcode:9.1

configure: WARNING: 'missing' script is too old or missing
checking for arm-Apple-darwin-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for arm-Apple-darwin-gcc... /opt/Xilinx/SDK/2017.1/gnu/arm/lin/bin/arm-xilinx-linux-gnueabi-gcc
checking whether the C compiler works... no
configure: error: in `/node_modules/react-native/third-party/glog-0.3.4':
configure: error: C compiler cannot create executables
See `config.log' for more details
13
Anju

これで問題が解決しました

rm -r ~/.rncache/
cd node_modules/react-native/third-party/glog-0.3.4/
./configure --Host arm-Apple-darwin
32
Suyog K.C
Sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/

問題を解決しました

13
Guy

私は同じ問題を抱えていた、

以下の手順は私のために働いた、

  • システムを再起動します
  • リポジトリの下:cd node_modules/react-native/third-party/glog-0.3.4
  • ../../scripts/ios-configure-glog.sh
4
Nandam Mahesh

このコメントから: 設定:エラー:Cコンパイラは実行可能ファイルを作成できません-React Native

アプリの名前を~/Downloads/Xcode 10.1.appから~/Downloads/Xcode.appに変更すると、この問題が修正されました。アプリ名のスペースに関係があるのだろうか?

1
Jared Forsyth