Closed khelil closed 5 years ago
I am getting the same errors and I was able to resolve them in the same way. I was able to build the app successfully but ended up with this issue https://github.com/infinitered/ignite-ir-boilerplate-andross/issues/222
cd ./node_modules/react-native/third-party/glog-0.3.4 && ../../scripts/ios-configure-glog.sh
Anyone want to take a stab at upgrading Andross to React Native 0.57.5? It should fix this issue with Xcode 10.
@jamonholmgren i'm in ! Can you give some indications ? I suppose we need to update Ignite CLI also ?
@khelil Apologies, I just saw this! Looks like @lvlrSajjad already got upgraded RN version out: https://github.com/infinitered/ignite-ir-boilerplate-andross/pull/228
Hi All,
After creating an app from andross boilerplate, got a glog error :
node_modules/react-native/third-party/glog-0.3.4/src/base/mutex.h:105:10: 'config.h' file not found
Here what i had to do to make it work :
node_modules/react-native/third-party/glog-0.3.4
./configure
make
make install
Then i got a
libfishhook.a
error :Then got a
No member named __rip in __darwin_arm_thread_state
errornode-module/react-native/third-party/glog-0.3.4/src/signalhandler.cc
and at line 78, and replacereturn (void*)context->PC_FROM_UCONTEXT;
byreturn NULL;
Also, i have to follow theses steps every time i install a new react native lib :(