Re: [Rd] Compiling R on Windows XP - Rgui crashes yet Rterm works

2012-05-11 Thread Adler, Avraham
I think I found the issue (through blind luck). When I recompiled without using -march=corei7 and instead leaving it as -mtune=core2 allows the gui to load properly. Now it seems to pass the tools library tests as well. Thank you. --Avraham Adler -Original Message- From: Adler,

[Rd] Problems with 64bit dll compile in R-2.15.0

2012-05-11 Thread Marian K Talbert
I built my package under the R version 2.14.1 on windows without any problems by first checking for issues using R CMD check (no warnings) and then R CMD build to build the tar.gz. I can install this on version 2.14.1 using install.packages(...). I next tested to see if I could also install

Re: [Rd] Problems with 64bit dll compile in R-2.15.0

2012-05-11 Thread Duncan Murdoch
On 12-05-10 2:07 PM, Marian K Talbert wrote: I built my package under the R version 2.14.1 on windows without any problems by first checking for issues using R CMD check (no warnings) and then R CMD build to build the tar.gz. I can install this on version 2.14.1 using install.packages(...). I

[Rd] Passing externalptr to .C()

2012-05-11 Thread Rick Sayre
Greetings. 2.15.0 added this behavior http://developer.r-project.org/blosxom.cgi/R-devel/NEWS/2012/03/29#n2012-03-29 o Passing R objects other than atomic vectors, functions, lists and environments to .C() is now deprecated and will give a warning. Most cases (especially NULL)

[Rd] Replacements for stdout and stderr guaranteed to be open in all versions of R

2012-05-11 Thread David Sterratt
I maintain the geometry package, which integrates the Qhull C library (http://qhull.org) into R. The Qhull function I hook into requires an open FILE handle as one of its arguments. I had set this file handle to stdout, but now R check NOTEs the presence of stdout, and the CRAN maintainers asked

Re: [Rd] Passing externalptr to .C()

2012-05-11 Thread Duncan Murdoch
On 12-05-11 5:20 PM, Rick Sayre wrote: Greetings. 2.15.0 added this behavior http://developer.r-project.org/blosxom.cgi/R-devel/NEWS/2012/03/29#n2012-03-29 o Passing R objects other than atomic vectors, functions, lists and environments to .C() is now deprecated and will give a

Re: [Rd] Replacements for stdout and stderr guaranteed to be open in all versions of R

2012-05-11 Thread Duncan Murdoch
On 12-05-11 5:36 PM, David Sterratt wrote: I maintain the geometry package, which integrates the Qhull C library (http://qhull.org) into R. The Qhull function I hook into requires an open FILE handle as one of its arguments. I had set this file handle to stdout, but now R check NOTEs the