1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

No member named rip in darwin_arm_thread_state64

Posted at

Xcode10でReactNativeをコンパイルし、有線経由で端末にアプリをインストールしようとしたら発生しました。

エラーが出ている行(signalhandler.cc)を編集することで解決しました。

# この行でエラーが出ている
return (void*)context->PC_FROM_UCONTEXT;  
# 上の行を下の行のように書き換えるする
return (void*)context->uc_mcontext->__ss.__pc

参考 Problem with third-party in Xcode 10 building to iOS physical device : (https://github.com/facebook/react-native/issues/19839)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?