Displaying 3 results from an estimated 3 matches for "w64port".
Did you mean:
4port
2010 Jul 05
2
Windows 64bit package build requires underscore hack?
Hello,
After much tinkering I managed to build packages using the 64bit version of
R with the help of hints from
http://www.murdoch-sutherland.com/Rtools/
and
http://www.stats.ox.ac.uk/~ripley/Win64/W64porting.html
and
R-admin Manual.
But a hack was required, and this seems to be related to
a comment about underscores at the end of the second
reference above (but this comment is about FUTURE
changes in R starting with 2.12.x, and I'm not sure how
it applies to the current problem using 2.11.1)....
2010 Jul 02
2
Best way to determine if you're running 32 or 64 bit R on windows
Hi,
Is this sufficient?
if (.Machine$sizeof.pointer==4){
cat('32\n')
} else {
cat('64\n')
}
Or is it better to test something in R.version, say os?
I'd like to use this to specify appropriate linker arguments when
building the RMySQL windows package.
Jeff
--
http://biostat.mc.vanderbilt.edu/JeffreyHorner
2010 Sep 01
2
documentation to upgrade R-package from 32 to 64bit
Dear all,
I am working with the an R-package named GAMLSS (www.gamlss.com<http://www.gamlss.com>) it is currently only functional under the 32-bit version of R (for windows)
The author of the package has agreed to help me create 64-bit compatible version.
I've been looking through the available R-documentation but cannot find any relevant information on the process.
Any help finding