Re: [CMake] Question about strange Android behavior

2017-06-29 Thread Jim Borden
Broadbent Date: Friday, June 30, 2017 8:36 To: "cmake@cmake.org" Subject: Re: [CMake] Question about strange Android behavior We hit this on android too, and moved across to using std::numeric_limits in our code. The root cause for us was differences between the C standard libraries on an

Re: [CMake] Question about strange Android behavior

2017-06-29 Thread Christopher Broadbent
We hit this on android too, and moved across to using std::numeric_limits in our code. The root cause for us was differences between the C standard libraries on android, and the one we were running on Linux. https://stackoverflow.com/questions/986426/what-do-stdc-limit-macros-and-stdc-constant-

[CMake] Question about strange Android behavior

2017-06-29 Thread Jim Borden
I’m not sure what the state of Android support is (there is the documentation on the CMake page, and then there is the documentation on the Android page which is different) but I wanted to point out a weird difference in behavior between CMake 3.7.2 and CMake 3.8.2 and ask about it. My project