Displaying 4 results from an estimated 4 matches for "initarithmetic".
2019 Dec 12
0
Build failure on powerpc64
...ppc64, so it dies there.
The fix is easy enough, do not try to assign a value to a static long
double on ppc64.
--- ./src/main/arithmetic.c.orig 2019-12-12 18:30:12.416334062 +0000
+++ ./src/main/arithmetic.c 2019-12-12 18:30:44.966334062 +0000
@@ -179,7 +179,10 @@ void attribute_hidden InitArithmetic()
#endif
}
-#if HAVE_LONG_DOUBLE && (SIZEOF_LONG_DOUBLE > SIZEOF_DOUBLE)
+/* PowerPC 64 (when gcc has -mlong-double-128) breaks here because
+ * of issues constant folding 128bit IBM long doubles.
+ */
+#if HAVE_LONG_DOUBLE && (SIZEOF_LONG_DOUBLE > SIZEOF_DOUBLE) &&...
2019 Dec 13
3
Build failure on powerpc64
...easy enough, do not try to assign a value to a static long
> double on ppc64.
> --- ./src/main/arithmetic.c.orig 2019-12-12 18:30:12.416334062 +0000
> +++ ./src/main/arithmetic.c 2019-12-12 18:30:44.966334062 +0000
> @@ -179,7 +179,10 @@ void attribute_hidden InitArithmetic()
> #endif
> }
> -#if HAVE_LONG_DOUBLE && (SIZEOF_LONG_DOUBLE > SIZEOF_DOUBLE)
> +/* PowerPC 64 (when gcc has -mlong-double-128) breaks here because
> + * of issues constant folding 128bit IBM long doubles.
> + */
> +#if HAVE_LONG_DOUBLE...
1999 Aug 19
1
bug: R says "Floating exception" on DEC-Alpha w/OSF1 (PR#252)
...with many contributors.
Type "?contributors" for a list.
Type "demo()" for some demos, "help()" for on-line help, or
"help.start()" for a HTML browser interface to help.
Type "q()" to quit R.
signal Floating point exception at [InitArithmetic:5 +0x17c,0x120018ddc] Source not available
(dbx) quit
----------------------------------------------------------------------
Any ideas what might be wrong and how I can get around it?
By the way, I use R on my PC without any glitches.
I'm impressed with the work you have done.
Thanks...
2019 Dec 13
0
Build failure on powerpc64
...to assign a value to a static long
> > double on ppc64.
> > --- ./src/main/arithmetic.c.orig 2019-12-12
> 18:30:12.416334062 +0000
> > +++ ./src/main/arithmetic.c 2019-12-12 18:30:44.966334062 +0000
> > @@ -179,7 +179,10 @@ void attribute_hidden InitArithmetic()
> > #endif
> > }
>
> > -#if HAVE_LONG_DOUBLE && (SIZEOF_LONG_DOUBLE > SIZEOF_DOUBLE)
> > +/* PowerPC 64 (when gcc has -mlong-double-128) breaks here because
> > + * of issues constant folding 128bit IBM long doubles.
> > +...