Skip to content

R CMD check --force-biarch

3 messages · Russell Almond, Simon Urbanek, Brian Ripley

#
On Oct 18, 2012, at 12:17 PM, Russell G. Almond wrote:

            
No, it's not configure's job to detect anything but the current architecture. Typically it needs to modify files so it can only modify them for one architecture. Your use of configure is very odd since you don't actually configure the package, you are copying dependencies into installation directories (so you can't even test it without override - that's very unusual and a bit questionable).
You probably mean to use R --arch i386 to check your 32-bit version - architectures are normally tested separately.

Cheers,
Simon
#
On 19/10/2012 15:00, Simon Urbanek wrote:
And he seems to have missed

R CMD check --help

includes

       --install-args=	command-line args to be passed to INSTALL

so I would have used

R CMD check --install-args=--force-biarch

(and when I do, it works for me).