[Error] hermes-engine : command phasescriptexecution failed with a nonzero exit code

Noma·2024년 8월 5일
0
post-custom-banner

문제 상황

react-native로 만든 앱을 ios 빌드할 때 hermes-engine에서 다음과 같은 에러가 나고 있다.

Command phasescriptexecution failed with a nonzero exit code

개발 환경

  • macOS Sonoma 14.6/Apple M1
  • react-native v0.74.4
  • node v20.9.0

해결 방법

.xcode.envNODE_BINARY를 확인해보자.

export NODE_BINARY=$(command -v node)

위와 같이 되어 있다면, $(command -v node) → 이 부분을 지우고 node 주소를 작성해주면 된다.

node 주소는 which node를 통해 확인 가능하다.

캐시를 지워주고 다시 빌드하면 Build Succeeded !

참고자료

https://github.com/facebook/react-native/issues/36762

profile
오히려 좋아
post-custom-banner

0개의 댓글