search for: _isnan

Displaying 10 results from an estimated 10 matches for "_isnan".

Did you mean: isnan
2004 May 24
1
Cannot call R's ISNAN() from a C code in >1.7 versions.
...calling R's ISNAN() from a C code? I have C codes including ISNAN() calls and they worked well until I upgraded my R from 1.7 to later versions. When I tried to compile the codes in the version 1.8 and 1.9, I got error messages like this: test.obj : error LNK2001: unresolved external symbol _isnan .\testR.dll : fatal error LNK1120: 1 unresolved externals NMAKE : fatal error U1077: 'link.exe' : return code '0x460' Stop. I checked "Writing R Extensions" and did not find any changes in the API entry point for ISNAN in the later versions. Could any one enlight...
2010 Jan 22
2
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
...cluding the clang front end) on 32bit vista: lib/system Errno.cpp : had to add "#undef HAVE_STRERROR_R" raw_ostream.cpp: had to add "#undef HAVE_UNISTD_H" (apparently config.h was not generated correctly) lib/support IsNan.cpp : had to add "#define isnan _isnan #include <float.h>" IsInf.cpp : had to add "#define isinf !_finite #include <float.h>" examples/ParallelJIT ParallelJIT.cpp : "#include <pthread.h>" pthread.h not supported on windows Obviously, these are quick hacks to get it to compile and no...
2004 Sep 16
1
[LLVMdev] HowToUseJIT.cpp - file: 'llvm/ADT/iterator': No suchfile or directory
...:bidirectional_iterator<int,int>... yes >Checking for C++ type std::forward_iterator<int,int>... yes >Checking for isnan(0.0) in C++ library None... no >Checking for isnan(0.0) in C++ library None... no >Checking for std::isnan(0.0) in C++ library None... no >Checking for _isnan(0.0) in C++ library None... yes >Checking for isinf(0.0) in C++ library None... no >Checking for isinf(0.0) in C++ library None... no >Checking for std::isinf(0.0) in C++ library None... no >Checking for finite(0.0) in C++ library None... no >Checking for _finite(0.0) in C++ library...
2010 Jan 22
0
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
...a: > > lib/system > > Errno.cpp : had to add "#undef HAVE_STRERROR_R" > raw_ostream.cpp: had to add "#undef HAVE_UNISTD_H" > (apparently config.h was not generated correctly) > > lib/support > > IsNan.cpp : had to add "#define isnan _isnan #include <float.h>" > IsInf.cpp : had to add "#define isinf !_finite #include <float.h>" > > examples/ParallelJIT > > ParallelJIT.cpp : "#include <pthread.h>" pthread.h not supported on > windows > > Obviously, these are quick...
2004 Sep 15
2
[LLVMdev] HowToUseJIT.cpp - file: 'llvm/ADT/iterator': No such file or directory
Hi I'm trying to compile HowToUseJIT.cpp, but it seems that iterator definition is missing: --------------------Configuration: HowToUseJIT - Win32 Debug-------------------- Compiling... HowToUseJIT.cpp c:\sfu\usr\local\src\llvm\include\llvm\adt\ilist(41) : fatal error C1083: Cannot open include file: 'llvm/ADT/iterator': No such file or directory Error executing cl.exe. I've
2004 Sep 26
2
[LLVMdev] patches and scons
...cated for this evening ;-) * IsInf.cpp VC has _finite in <float.h>. I think it's needed to integrate the #if dance in IsInf.cpp with #elif HAVE__FINITE_IN_FLOAT_H # include <float.h> static int isinf(double x) { return !_finite(x); } * IsNan.cpp Same as above. VC has _isnan(x), so it's needed #elif HAVE__ISNAN_IN_FLOAT_H # include <float.h> static int isnan(double x) { return _isnan(x); } #else Right now I'm defining that defines flags directly when compiling the files, but I think it would be better to add them to the configure.h.in file. *...
2007 Jan 31
1
problem with compilation of R on Solaris 10 in x86
Dear List, we're trying to install R on Solaris10 on a x86 (amd64). During the installation we pass successfully the ./configure but we get an error through the built-in function "_isnan" which we see existing in /lib When passing the command "make" we get : gcc -std=gnu99 -I../../src/extra/zlib -I../../src/extra/bzip2 -I../../src/extra/pcre -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -g -O2 -c seriali...
2004 Oct 19
0
[LLVMdev] Visual C Patches for IsNAN.cpp and IsInf.cpp
I submitted a patch keeping the traditional approach, HAVE_FINITE_IN_FLOAT_H and HAVE_ISNAN_IN_FLOAT... Just another case added to the others instead of a custom approach. --- Paolo On Oct 19, 2004, at 12:16 PM, Morten Ofstad wrote: > I don't know if Paolo submitted his patches for these files, but they > are not in the CVS -- I've chosen a slightly different strategy,...
2004 Oct 19
2
[LLVMdev] Visual C Patches for IsNAN.cpp and IsInf.cpp
I don't know if Paolo submitted his patches for these files, but they are not in the CVS -- I've chosen a slightly different strategy, adding a case that checks if the compiler is MSVC instead of adding HAVE_FINITE_IN_FLOAT_H and HAVE_ISNAN_IN_FLOAT_H to the config.h file. I don't know which is the best approach, but this is the minimal patch to make it work... m. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: diff.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/att...
2015 Apr 03
0
Wine release 1.7.40
...guments. msvcrt: Fix NAN handling in printf. msvcrt/tests: Use NAN and INFINITY definitions from port.h in printf tests. user32/tests: Don't send mouse clicks to other process windows in input tests. msvcp90/tests: Use NAN and INFINITY definitions from port.h in Ctraits::_Isnan tests. advapi: Don't use CreateFile when opening file with possibly empty DACL. server: Make directory DACL entries inheritable. advapi32: Add SetNamedSecurityInfo test with empty DACL. advapi32/tests: Add test for mapping DACL to permission. advapi32: Add DACL inh...