Skip to content Skip to sidebar Skip to footer

Android Ndk Complains Std::nearbyint Is Not A Member Of Std

I want use std::nearbyint in android gcc but then ndk complains that std::nearbyint is not a member of std. I have the cmath header included in my code & the same builds well f

Solution 1:

This is part of https://github.com/android-ndk/ndk/issues/82. GNU's libstdc++ is overly broad with their feature guards. We're working on stabilizing the NDK's solution for libc++ so we can just move entirely over to that instead.


Post a Comment for "Android Ndk Complains Std::nearbyint Is Not A Member Of Std"