Displaying 2 results from an estimated 2 matches for "misunterstand".
Did you mean:
misunderstand
2020 Aug 30
5
BUG: complete misunterstanding of the MS-ABI
Objects compiled for the MS-ABI don't conform to it!
Data types beyond 64 bit MUST BE returned by the callee via the
hidden first argument allocated by the caller, NOT in XMM0!
Demo/proof: from this source
--- llvm-bug.c ---
#ifndef __clang__
typedef struct {
unsigned __int64 low;
unsigned __int64 high;
} __uint128_t;
#else
__attribute__((ms_abi))
#endif
__uint128_t
2011 Feb 11
3
Writing R packages in an easier way?
...rmat.
Does anyone know a easier way? If not just a question to the members of the R
Development Core Team: Could you imagine to open an alternative way of writing
packages? Is it possible to that new versions of R will again accept the build
of packages like in R versions < 2.10.0? Don't misunterstand me: I absolutely
agree that R packages which should become part of CRAN must obey to official
rules like described in the manuals. But I think you can controll this while
uploading a package to CRAN. In my eyes an alternative, easier way writing a R
package would help first-time users and typic...