We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After updating glog from version 0.3.3 to 0.3.5 it crashes on iOS with Thread 1: EXC_BAD_ACCESS (code=1, address=0x0) at line 1218 in logging.cc
Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)
This is the code triggering the crash: google::InitGoogleLogging("Test SDK"); DLOG(INFO) << "Test logging";
The same code works fine on Android.
Same problem with version 0.3.4
The text was updated successfully, but these errors were encountered:
Does it work if you disable TLS? This can be done using the command-line as follows:
$ cmake <glog-build-dir> -DWITH_TLS=OFF
Afterwards you need to compile glog again.
Sorry, something went wrong.
how to build glog in ios?
No branches or pull requests
After updating glog from version 0.3.3 to 0.3.5 it crashes on iOS with
Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)
at line 1218 in logging.ccThis is the code triggering the crash:
google::InitGoogleLogging("Test SDK");
DLOG(INFO) << "Test logging";
The same code works fine on Android.
Same problem with version 0.3.4
The text was updated successfully, but these errors were encountered: