打开node_modules/react-native/third-party/glog-0.3.4/src/config.h文件
或者直接在工程中搜PC_FROM_UCONTEXT定义的地方。
将 这里
/* How to access the PC from a struct ucontext */ #define PC_FROM_UCONTEXT uc_mcontext->__ss.__rip
替换为:
/* 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
react-native ios No member named '__rip' in '__darwin_arm_thread_state64