Displaying 3 results from an estimated 3 matches for "mathutils".
2004 Jun 10
3
Package installation
...-c aggreg.c -o
aggreg.o
gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES
-mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 -c grptest.c -o
grptest.o
gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES
-mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 -c mathutils.c -o
mathutils.o
gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES
-mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 -c uvartest.c -o
uvartest.o
gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES
-mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 -c wyclu...
2010 Nov 19
1
gomp library with Rtools212
Dear developers,
I am a maintainer of the CORElearn package which uses OpenMP multithreading
to speed up some computations. When producing a new release we tested the
package with the latest R 2.12.0. On Linux the package works normally. On
Windows we installed a recommended version of Rtools (Rtools212) but the
linker fails with the messages below.
...
g++
2008 Jan 15
0
4 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_types.c test/trace
...ypes.c
index 3622ba1..ff959c3 100644
--- a/libswfdec/swfdec_as_types.c
+++ b/libswfdec/swfdec_as_types.c
@@ -482,10 +482,19 @@ swfdec_as_value_to_number (SwfdecAsContext *context, const SwfdecAsValue *value)
char *end;
double d;
+ // FIXME: We should most likely copy Tamarin's code here (MathUtils.cpp)
s = SWFDEC_AS_VALUE_GET_STRING (&tmp);
if (s == SWFDEC_AS_STR_EMPTY)
return NAN;
- d = g_ascii_strtod (s, &end);
+ if (s[0] == '0' && s[1] == 'x') {
+ if (context->version <= 5)
+ return NAN;
+ d = g_ascii_strtoll (s + 2, &end, 16);
+ }...