Skip to content

Instantly share code, notes, and snippets.

@Naturalclar
Created October 16, 2018 01:01
Show Gist options
  • Save Naturalclar/e369bac2ad6de3d67df985b25c472211 to your computer and use it in GitHub Desktop.
Save Naturalclar/e369bac2ad6de3d67df985b25c472211 to your computer and use it in GitHub Desktop.
XCode10でReact-Nativeのプロジェクトを実機のiPhoneで試験する ref: https://qiita.com/Naturalclar/items/172ccd8096e82703cac5
/* How to access the PC from a struct ucontext */
#if defined(__arm__) || defined(__arm64__)
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__pc
#else
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__rip
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment