|
From: Jun T. <tak...@kb...> - 2015-12-10 09:22:17
|
On 2015/12/09, at 19:41, Mojca Miklavec <moj...@gm...> wrote:
> qtterminal/qt_conversion.cpp:129:9: error: use of undeclared
> identifier 'isnan'; did you mean 'std::isnan'?
> if (isnan(*image))
> ^~~~~
> std::isnan
>
> which I can fix by changing isnan to std::isnan,
If I set
export CC=clang CXX=clang++
export CXXFLAGS='-std=c++11 -stdlib=libc++'
then I don't need to modify any source files (OS X 10.8, Qt5).
Do you get the isnan error even with this CXXFLAGS?
BTW, how did you install Qt5? I'm using the binary distribution
from http://www.qt.io/download-open-source/.
|