Displaying 20 results from an estimated 2000 matches similar to: "Problems with Windows Cross compile"
2005 Feb 07
1
Problems encountered/fixed making CrossCompileBuild
Dear All:
I encountered and apparently overcame problems following Yan
and Rossini?s procedure for "Building Microsoft Windows
Versions of R and R packages under Intel Linux"
(http://cran.r-project.org/doc/contrib/cross-build.pdf): I
have successfully cross-compiled R packages for Windows on a
FreeBSD 4.10 i386 system.
My revisions to Makefile-rcb (http://cran.r-
2004 Jun 09
1
Add links to NEWS/ChangeLog to package pages
Just a thought:
It would be nice to be able to review the NEWS and/or ChangeLog files for
packages via the package web page on CRAN...
-Greg
Gregory R. Warnes
Manager, Non-Clinical Statistics
Pfizer Global Research and Development
LEGAL NOTICE\ Unless expressly stated otherwise, this messag...{{dropped}}
2004 Jan 20
2
ChangeLog for R packages {was "Wish list"}
I've been using a cvs2cl.pl (http://www.red-bean.com/cvs2cl), a nice little
perl script to auto-generate GNU-style
changelogs from CVS log information.
This site also has a proposed XML format for changelogs, and cvs2cl can
optionally produce this instead. Finally, they have an XSLT sylesheet that
will convert the XML changlong format into an HTML/XHTML page.
How about we borrow this tool
2007 Jan 19
2
Cross-compile errors under R-2.4.0 and R-2.4.1
Dear all,
I already posted a question regarding this to an existing thread:
http://tolstoy.newcastle.edu.au/R/e2/devel/06/10/0852.html#start
I apologize for the double posting but I have some further information
that might be illuminating.
I am trying to cross-compile my R-package under ubuntu linux, kernel
2.6.17-10-generic, on an IBM T60.
I am following the suggested steps in
2007 Oct 11
2
R260 cross-compilation
Hi,
I'm trying to cross compile R260 in a ubuntu 6.06 linux. I downloaded
the Makefile for 251 and simply replaced the R version by 260. However
I'm getting an error about mingw.
ernesto at gandalf:~/ipimar/devel/R/ccompile260$ make R
export
2004 Aug 25
1
No is.formula()
There appears to be no "is.formula()" function in R-1.9.1. May I suggest
that
is.formula <- function(x) inherits(x, "formula")
be added to base, since formula is a fundimental R type?
Gregory R. Warnes
Manager, Non-Clinical Statistics
Pfizer Global Research and Development
LEGAL NOTICE\ Unless expressly stated otherwise, this messag...{{dropped}}
2003 May 22
4
grep, gsub, sub have problems with NA values (PR#3078)
In a string context, grep, gsub, sub are improperly treating NA (missing) as
the string "NA", and returning unexpected results
> grep("A", c(NA,"NA"))
[1] 1 2
# expected:
# [1] 2
> gsub("A", "X", c(NA,"NA"))
[1] "NX" "NX"
# expected
# [1] NA "NX"
> sub("A", "X",
2003 Dec 09
3
latex problem with \preformatted (PR#5645)
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C3BE9C.3FB5BC1A
Content-Type: text/plain; charset="iso-8859-1"
There is a small bug in the implementation of \preformatted in R 1.8.0:
The closing "\end{verbatim}" needs to be followed by a newline, since my
latex
2005 Oct 03
3
Problem building/checking library that requires input from user
Hi all,
I've got a package i've written that i am trying to check, build, and
install. This is my 1st time doing this, so apologies in advance... ;)
The package that I've written requires input from the user. It needs to know
sample sizes and then runs some calcs, (sample sizes are just integers), and
it gets this info from the user as
num_reps <- readline("How many reps
2003 Nov 24
6
Proposal: 'global' package refactoring
Looking over the contents of various packages, including my own, it is clear
that lots of things end up 'hidden away' in packages where they don't
belong. My gregmisc package is a particularly egregious example, containing
something from almost every functional category.
I propose that from time to time the R community go through the complete set
of packages and 'refactor'
2005 Dec 12
1
FW: Bug in sum() with named data frame arguments
I got an email error message when I attempted to send this from my work
account. I have manually added it to the bug tracker, and am resending from
my personal account.
-G
On 12/12/05, Warnes, Gregory R <gregory.r.warnes@pfizer.com> wrote:
>
>
>
> > -----Original Message-----
> > From: Warnes, Gregory R
> > Sent: Monday, December 12, 2005 1:53 PM
>
2003 Sep 10
3
Off Topic: Good reference for sample size calculations
Hi All,
This is off topic, but we're drawing a blank here..
> In a presentation I'll be giving next week, I want to include a reference
> to a good general text on computing sample sizes for standard experiments.
> Can anyone recommend a good book to use for this purpose?
>
> Thanks,
>
> -Greg
LEGAL NOTICE\ Unless expressly stated otherwise, this
2004 Mar 25
2
Odd error in R CMD check (PR#6695)
I'm seeing an odd error message when running R CMD check gregmisc with
R-1.9.0beta_2004-03-22.tar.gz
* checking package dependencies ... WARNING
Error in switch(type, code = c("R", "r", "S", "s", "q"), data = c("R", :
Argument "type" is missing, with no default
Execution halted
See the information on DESCRIPTION
2005 May 04
4
Unbundling gregmisc (was: loading gap package)
Let me redirect the topic a bit. I've been considering unbundling gregmisc.
The pro would be that people would find the component packages (i.e. gdata)
more easily. The con is that the packages have a number of
interdependencies, so you pretty much will need to get most of them anyway.
As the latest gregmisc bundle contains a gregmisc package that is just a
stub that depends on and loads
2005 May 04
4
Unbundling gregmisc (was: loading gap package)
Let me redirect the topic a bit. I've been considering unbundling gregmisc.
The pro would be that people would find the component packages (i.e. gdata)
more easily. The con is that the packages have a number of
interdependencies, so you pretty much will need to get most of them anyway.
As the latest gregmisc bundle contains a gregmisc package that is just a
stub that depends on and loads
2004 Jun 21
2
Cross build Makefile
Hello,
I am trying to use Yan and Rossini's Makefile for cross building Windows
versions of R packages in Linux with R 1.9.0. When compiling R with the
mingw tools I get an error about expm1 being undeclared when first found
at src/main/arithmetic.c:1019
If I fiddle a bit with it later on I also get errors about log1p bein
undeclared.
Any idea what should I look for?
I am using R 1.9.0 in
2004 Jun 21
2
Cross build Makefile
Hello,
I am trying to use Yan and Rossini's Makefile for cross building Windows
versions of R packages in Linux with R 1.9.0. When compiling R with the
mingw tools I get an error about expm1 being undeclared when first found
at src/main/arithmetic.c:1019
If I fiddle a bit with it later on I also get errors about log1p bein
undeclared.
Any idea what should I look for?
I am using R 1.9.0 in
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from
http://www.bioconductor.org/getBioC.R to install the biobase packages.
Unfortunately, url() and download.file() die when trying to talk to my
proxy:
> getBioC("exprs")
connect: Cannot assign requested address
unable to connect to 'gproxy1.pfizer.com'.
connect: Cannot assign requested address
unable to connect to
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from
http://www.bioconductor.org/getBioC.R to install the biobase packages.
Unfortunately, url() and download.file() die when trying to talk to my
proxy:
> getBioC("exprs")
connect: Cannot assign requested address
unable to connect to 'gproxy1.pfizer.com'.
connect: Cannot assign requested address
unable to connect to
2005 Jan 05
4
make R package for windows on Linux
Hi,
I made a package on a linux box. All worked fine.
The package contains only R code (no C). I then wanted to make a zip
file so that I could test the package on a windows machine. I have tried
all the obvious ways to do this (and even some that are not!), but to no
avail. The only instructions I find about building packages for windows
(e.g. mypkg.zip) seem to imply that the build be done