Displaying 6 results from an estimated 6 matches for "log1pl".
Did you mean:
log1p
2015 Jul 27
1
[LLVMdev] tfloat support for mingw-w64
...it under another name?
I've tried using .x86_fp80 instead but to no avail. :/
Here is how tfloat is being used in mingw-w64 and how I am hacking around
it with a very dirty .double
Date: Wed, 1 Jul 2015 02:53:22 +0100
Subject: [PATCH 3/4] clang fixes and hacks
diff --git a/mingw-w64-crt/math/log1pl.S b/mingw-w64-crt/math/log1pl.S
--- a/mingw-w64-crt/math/log1pl.S
+++ b/mingw-w64-crt/math/log1pl.S
@@ -16,7 +16,11 @@
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*/
+#ifdef __clang__
+limit: .double 0.29 // must enable .x86_fp80 for windows :)
+#e...
2012 May 15
1
R-devel on FreeBSD: new C99 functions don't build
...-fopenmp -fpic
-O2 -pipe -O2 -fno-strict-aliasing -pipe -msse3
-Wl,-rpath=/usr/local/lib/gcc46 -c Rmain.c -o Rmain.o
gcc46 -std=gnu99 -export-dynamic -fopenmp -L/usr/local/lib
-Wl,-rpath=/usr/local/lib/gcc46 -o R.bin Rmain.o -L../../lib -lR -lRblas
../../lib/libR.so: undefined reference to `log1pl'
collect2: ld returned 1 exit status
*** [R.bin] Error code 1
Stop in /usr/ports/math/R-devel/work/R-devel/src/main.
*** [R] Error code 1
Stop in /usr/ports/math/R-devel/work/R-devel/src/main.
*** [R] Error code 1
Stop in /usr/ports/math/R-devel/work/R-devel/src.
*** [R] Error code 1
Stop in /u...
2018 Feb 06
2
libc++ cross-compile linux-armv7 and math function problems
...ed
inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __lcpp_x)
_NOEXCEPT {return ::llroundl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double log1p(long
double)':
../projects/libcxx/include/math.h:1294:92: error: '::log1pl' has not been
declared
inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __lcpp_x)
_NOEXCEPT {return ::log1pl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double log2(long
double)':
../projects/libcxx/include/math.h:1...
2018 Feb 06
0
libc++ cross-compile linux-armv7 and math function problems
...x) _NOEXCEPT {return ::llroundl(__lcpp_x);}
> ^~
> ../projects/libcxx/include/math.h: In function 'long double log1p(long double)':
> ../projects/libcxx/include/math.h:1294:92: error: '::log1pl' has not been declared
> inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __lcpp_x) _NOEXCEPT {return ::log1pl(__lcpp_x);}
> ^~
> ../projects/libcxx/include/math.h: In function ...
2018 Feb 06
1
libc++ cross-compile linux-armv7 and math function problems
...ILITY long long llround(long double
> __lcpp_x) _NOEXCEPT {return ::llroundl(__lcpp_x);}
> >
> ^~
> > ../projects/libcxx/include/math.h: In function 'long double log1p(long
> double)':
> > ../projects/libcxx/include/math.h:1294:92: error: '::log1pl' has not
> been declared
> > inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double
> __lcpp_x) _NOEXCEPT {return ::log1pl(__lcpp_x);}
> >
> ^~
> > ../projects/libcxx/include/math.h: In function 'long double log2(long
> double)':...
2018 Feb 05
0
Cross-compiling libc++ to linux-armv7hf gives undefined symbols in cmath / math.h
...lroundl' has not been
declared
inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __lcpp_x)
_NOEXCEPT {return ::llroundl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double log1p(long
double)':
../projects/libcxx/include/math.h:1294:92: error: '::log1pl' has not been
declared
inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __lcpp_x)
_NOEXCEPT {return ::log1pl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double log2(long
double)':
../projects/libcxx/include/math.h:1304:91: error: '::log2l'...