[React-Native / 리액트 네이티브] react native pod 관련 에러(m1 silicon ) - error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65.
error Failed to build iOS project.
We ran "xcodebuild" command but it exited with error code 65.
m1 맥북에서 pod install 을 하면 위와 같은 에러가 뜨는 경우가 있다.
이럴 경우 해결 방법
프로젝트 최상위 폴더 - ios 내에 있는 Podfile 수정.
아래처럼 use_flipper!() 삭제(주석처리)
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
# use_flipper!()
post_install do |installer|
react_native_post_install(installer)
end
end
pod 설치할 때
pod install -> arch -x86_64 pod install
(나는 이 방법으로 해결함)
Author And Source
이 문제에 관하여([React-Native / 리액트 네이티브] react native pod 관련 에러(m1 silicon ) - error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@siugan/React-Native-리액트-네이티브-react-native-pod-관련-에러m1-silicon-error-Failed-to-build-iOS-project.-We-ran-xcodebuild-command-but-it-exited-with-error-code-65저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)