Displaying 3 results from an estimated 3 matches for "ld_align".
Did you mean:
_align
2016 Jan 05
0
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
...# include <stdalign.h>
> +2141 #endif
> +2142
> +2143 #include <stdint.h>
> +2144
> +2145 long double *R_allocLD(size_t nelem)
> +2146 {
> +2147 #if __alignof_is_defined
> +2148 // This is C11: picky compilers may warn.
> +2149 size_t ld_align = alignof(long double);
> +2150 #elif __GNUC__
> +2151 // This is C99, but do not rely on it.
> +2152 size_t ld_align = offsetof(struct { char __a; long double
> __b; }, __b);
> +2153 #else
This is a hint/hack - with xlc V11 I get past a syntax "failure" wi...
2016 Jan 04
2
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
...2139 #ifdef HAVE_STDALIGN_H
+2140 # include <stdalign.h>
+2141 #endif
+2142
+2143 #include <stdint.h>
+2144
+2145 long double *R_allocLD(size_t nelem)
+2146 {
+2147 #if __alignof_is_defined
+2148 // This is C11: picky compilers may warn.
+2149 size_t ld_align = alignof(long double);
+2150 #elif __GNUC__
+2151 // This is C99, but do not rely on it.
+2152 size_t ld_align = offsetof(struct { char __a; long double
__b; }, __b);
+2153 #else
+2154 size_t ld_align = 0x0F; // value of x86_64, known others
are 4 or 8
+2155 #endif...
2016 Jan 04
4
R, AIX 64-bit builds - trying to understand root cause for message: "Error: Line starting 'Package: tools ...' is malformed!"
I would be "pleased" if you would try packages - i.e., none of "Toolbox"
or Perzl rpm's.
The iconv I supply might not be working as is (I will need to install a
new system to check). However, this is why I have been testing with
R-3.2.3 - to side-step the system library dependencies.
re: xz - I have "installp" version - and any of my packages should work