search for: hypotl

Displaying 5 results from an estimated 5 matches for "hypotl".

Did you mean: hypot
2018 Feb 06
2
libc++ cross-compile linux-armv7 and math function problems
...le __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fminl(__lcpp_x, __lcpp_y);} ^~ ../projects/libcxx/include/math.h: In function 'long double hypot(long double, long double)': ../projects/libcxx/include/math.h:1233:114: error: '::hypotl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);} ^~ ../projects/libcxx/include/math.h: In function 'int ilogb(long do...
2018 Feb 06
0
libc++ cross-compile linux-armv7 and math function problems
...cpp_y);} > ^~ > ../projects/libcxx/include/math.h: In function 'long double hypot(long double, long double)': > ../projects/libcxx/include/math.h:1233:114: error: '::hypotl' has not been declared > inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);} > ^~...
2018 Feb 06
1
libc++ cross-compile linux-armv7 and math function problems
..._lcpp_y) _NOEXCEPT {return ::fminl(__lcpp_x, __lcpp_y);} > > > ^~ > > ../projects/libcxx/include/math.h: In function 'long double hypot(long > double, long double)': > > ../projects/libcxx/include/math.h:1233:114: error: '::hypotl' has not > been declared > > inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double > __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, > __lcpp_y);} > > > ^~ > > ../projects/libcxx/include/math.h...
2018 Feb 05
0
Cross-compiling libc++ to linux-armv7hf gives undefined symbols in cmath / math.h
..._LIBCPP_INLINE_VISIBILITY long double fmin(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fminl(__lcpp_x, __lcpp_y);} ^~ ../projects/libcxx/include/math.h: In function 'long double hypot(long double, long double)': ../projects/libcxx/include/math.h:1233:114: error: '::hypotl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);} ^~ ../projects/libcxx/include/math.h: In function 'int ilogb(long double)': ../projects/libcxx/include/math.h:1254:84:...
2000 May 22
2
hypot(x,y) instead of pythag(a,b) ?!
...Emacs C-h i "m libc") about "Libc" contains (in the section "Exponentiation and Logarithms"): ============================= >> - Function: double hypot (double X, double Y) >> - Function: float hypotf (float X, float Y) >> - Function: long double hypotl (long double X, long double Y) >> These functions return `sqrt (X*X + Y*Y)'. This is the length of >> the hypotenuse of a right triangle with sides of length X and Y, >> or the distance of the point (X, Y) from the origin. Using this >> function ins...