Displaying 20 results from an estimated 150 matches similar to: "Issues in installing R-devel"
2013 Aug 20
0
R-devel Digest, Vol 126, Issue 18
Thank you, it does work now indeed. My platform is 32 bit.
-- Txikiak
On 08/20/2013 12:00 PM, r-devel-request at r-project.org wrote:
> Date: Mon, 19 Aug 2013 14:08:33 +0100
> From: Prof Brian Ripley <ripley at stats.ox.ac.uk>
> To: r-devel at r-project.org
> Subject: Re: [Rd] Issues in installing R-devel
> Message-ID: <521218D1.1050502 at stats.ox.ac.uk>
>
2019 Feb 27
2
Intermittent crashes with inset `[<-` command
Valgrind (without gctorture) reports memory misuse:
% R --debugger=valgrind --debugger-args="--leak-check=full --num-callers=18"
...
> x <- 1:200000
> y <- rep(letters[1:5], length(x) / 5L)
> for (i in 1:1000) {
+ # x[y == 'a'] <- x[y == 'b']
+ x <- `[<-`(x, y == 'a', x[y == 'b'])
+ cat(i, '')
+ }
1 2 3 4 5 6 7 8 9 10
2019 Feb 27
0
Intermittent crashes with inset `[<-` command
On an azure centos VM, I can reproduce this bug which reports either:
*** caught segfault ***
address 0x70000006a, cause 'memory not mapped' (crash)
Or
incompatible types (from builtin to integer) in subassignment type fix
(no crash)
Like Gabriel, I could not reproduce the bug on a mac laptop. Both R
versions 3.5.1.
Travers
On Wed, Feb 27, 2019 at 9:08 AM William Dunlap via R-devel
2012 Jan 20
1
Building R on RHEL 5
Hello,
I am trying to upgrade to the latest R release on a machine running Red Hat el5.? Previously I was successful at building R 2.11, but now I am having troubles with R 2.14.
Configure goes fine, but then make throws a lot of errors (output below).? Any idea what I am doing wrong this time around?
Thanks in advance,
Erik
make output:
...
gcc -std=gnu99 -I../../src/extra/zlib
2006 Apr 03
2
Build failure with this morning's R-alpha
Trying to build a Debian snapshot of R-alpha based on last night's tarball,
it fails with what looks like a missing -lm linking directive:
[...]
gcc -I. -I../../src/include -I../../src/include -DHAVE_CONFIG_H -fpic -O2 -c version.c -o version.o
gcc -I. -I../../src/include -I../../src/include -DHAVE_CONFIG_H -fpic -O2 -c vfonts.c -o vfonts.o
g77 -fpic -O2 -c xxxpr.f -o
2019 Feb 26
8
Intermittent crashes with inset `[<-` command
The following code crashes after about 300 iterations on my?x86_64-w64-mingw32?machine on R 3.5.2 --vanilla.??
Others have duplicated this (see?https://github.com/tidyverse/magrittr/issues/190?if necessary), but I don't know how machine/OS-dependent it may be.??
If it doesn't crash for you, please try increasing the length of the x vector.
Substituting the commented-out line for the one
2009 Nov 03
1
memory misuse in subscript code when rep() is called in odd way
The following odd call to rep()
gives somewhat random results:
> rep(1:4, 1:8, each=2)
[1] 1 1 1 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4
4 4 4
[26] 4 4 4 4 4 4 4 4 4 4 4 NA NA NA NA NA NA NA NA NA NA NA
NA NA NA
[51] NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
> rep(1:4, 1:8, each=2)
Error: only 0's may be mixed with negative
2008 Jun 30
1
AIX 5.3 --enable-R-shlib make error with R-2.7.1
Using AIX 5.3 and gcc-4.2.1 for building R-2.7.1 with the following
configure flags
OBJECT_MODE=64
CC="gcc -maix64"
CXX="g++ -maix64"
F77="gfortran -maix64"
FC="gfortran -maix64"
CFLAGS="-g -O3"
CXXFLAGS="-g -O3"
FFLAGS="-g -O3"
FCFLAGS="-g -O3"
LDFLAGS="-L/$HOME/usr/local/lib/ppc64
2006 Feb 26
0
R2.2.1 source compile problem in MacOS10.3
Dear R-list,
Realising the importance of updating the R base, I tried to compile the
source file of R2.2.1 in my machine, but failed.
According to "R for Mac OS X FAQ", i've got the basic dependencies
which are gcc 3.3 and g77 3.4.
./configure is fine
Here are the errors I got from make:
>make
...
gcc -I../../src/extra/zlib -I../../src/extra/bzip2
-I../../src/extra/pcre
2012 May 15
1
R-devel on FreeBSD: new C99 functions don't build
About April 25th, there had been some changes within R-devel's
src/nmath/pnbeta.c (and probably some other relevant places) and now
building R-devel on FreeBSD 10.0-CURRENT (amd64) with gcc-4.6.4 and
math/R-devel (selfmade forked port from math/R) fails like this:
[..snip..]
mkdir /usr/ports/math/R-devel/work/R-devel/bin/exec
gcc46 -std=gnu99 -I../../src/extra -I. -I../../src/include
2007 Nov 26
2
Problem installing R on Solaris 9
I've downloaded R-2.6.0 I want to install it on Solaris, so, I run the
configure command, it to be fine, but once I run
make it give me the following error:
*ld: fatal : fichier Rmain.o : type de machine ELF erronV : EM_386
ld: fatal : Erreurs dans le traitement des fichiers. Aucun rVsultat n'a VtV
Vcr
it dans R.bin
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error:
2008 Nov 04
2
Building with MKL on Ubuntu
Hi all,
I'm trying to build R from subversion with MKL 10.0.2 on Ubuntu. I tried:
./configure --with-blas='-L/opt/intel/mkl/10.0.2.018/lib/em64t -lmkl
-lguide' --with-lapack='/opt/intel/mkl/10.0.2.018/lib/em64t -lmkl
-lmkl_lapack' --enable-R-shlib
and got:
R is now configured for x86_64-unknown-linux-gnu
Source directory: .
Installation directory: /usr/local
2008 Nov 04
2
Building with MKL on Ubuntu
Hi all,
I'm trying to build R from subversion with MKL 10.0.2 on Ubuntu. I tried:
./configure --with-blas='-L/opt/intel/mkl/10.0.2.018/lib/em64t -lmkl
-lguide' --with-lapack='/opt/intel/mkl/10.0.2.018/lib/em64t -lmkl
-lmkl_lapack' --enable-R-shlib
and got:
R is now configured for x86_64-unknown-linux-gnu
Source directory: .
Installation directory: /usr/local
2005 Mar 17
3
Compiling "R Embedded" examples
Hi,
This question was first posted wrongly on R-help. Apologize for the inconvenience.
I am working at a major financial institution and we would like to embed R in one of our front office application.
The application is written in C/C++ so I started by trying to compile the examples in "tests/Embedding" of R 2.0.1.
I have modified "tests/Embedding/Makefile" according to
2002 Apr 25
1
An unexpected exception has been detected in native code outside the VM
Dear all:
I have a problem with calling R from Java,
It was ok at the first time,but the error message "An unexpected exception has been detected in native code outside the VM. "
will appear. What is the issue of "native code"?
Could somebody help me ?
Thanks,
ken
This is the log I obtained:
executing: source('/export/home/users/ruser/java/Rmain.R')
Loading
2010 Jan 04
1
bin/exec/R coredumps (PR#14177)
Full_Name: Jens Elkner
Version: 2.10.1
OS: Solaris
Submission from: (NULL) (87.188.113.172)
elkner.idev2 elkner/build/R-2.10.1 > bin/exec/R -e
Segmentation fault (core dumped)
elkner.idev2 elkner/build/R-2.10.1 > dbx bin/exec/R core
For information about new features see `help changes'
To remove this message, put `dbxenv suppress_startup_message 7.7' in your
.dbxrc
Reading R
core
2013 May 25
0
segfault when using browser() in Rprofile.site
Hi.
It seems that if I put a browser() in my Rprofile.site, I get a
segfault. This happens on several machines, several versions of R.
Here it the valgrind output when using revision 62797:
==31314== Memcheck, a memory error detector
==31314== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==31314== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==31314==
2007 Jan 30
1
Solaris 10 compilation issue
I am trying to compile R-2.4.1 in 64-bit on Solaris 10 running on AMD
hardware. I am trying to do this with Sun Studio 11.
My config.site looks like this:
#! /bin/sh
AR="/usr/ccs/bin/ar"
TEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/tex"
LATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/latex"
PDFTEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
2007 Jan 30
1
Difficulty with compiling R-2.4.1 on solaris 10
I am trying to compile R-2.4.1 in 64-bit on Solaris 10 running on AMD
hardware. I am trying to do this with Sun Studio 11.
My config.site looks like this:
#! /bin/sh
AR="/usr/ccs/bin/ar"
TEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/tex"
LATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/latex"
PDFTEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
2017 Aug 23
2
No rule to make target all.R, needed by compiler.rdb building R 3.4.1 from source, Scientific Linux release 6.9 (Carbon)
Thanks again, sorry I didn't specify this. I am loading new libraries to get to this point. The script I run for "configure" is:
#Load the new curl module
module load libs/gcc/4.4.7/curl/7.47.1
#Load the new xzutils module
module load apps/gcc/4.4.7/xzutils/5.2.2
#Load the new zlib module
module load libs/gcc/4.4.7/zlib/1.2.8
#Load the new bzip2 module
module load