You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seams that that android ndk's default toolchain does not support exception_ptr (I'm targeting armeabi-v7a)
output error that I'm getting:
RxCpp/Rx/v2/src/rxcpp/rx-subscriber.hpp:78:37: error: no type named 'exception_ptr' in
namespace 'std'; did you mean 'exception'?
what do you suggest?
The text was updated successfully, but these errors were encountered:
To anyone wandering here, you can now pick a different STL provided in the NDK
to solve this issue, libc++ for instance. Passing --stl=libc++ to
make-standalone-toolchain.sh did the trick in my case.
It seams that that android ndk's default toolchain does not support exception_ptr (I'm targeting armeabi-v7a)
output error that I'm getting:
RxCpp/Rx/v2/src/rxcpp/rx-subscriber.hpp:78:37: error: no type named 'exception_ptr' in
namespace 'std'; did you mean 'exception'?
what do you suggest?
The text was updated successfully, but these errors were encountered: