Displaying 20 results from an estimated 3000 matches similar to: "R-2.3.0 make error"
2006 Aug 04
1
Error when loading odesolve
Dear list,
I installed odesolve package (0.5-15) in R 2.3.1 in a Solaris server
(Generic_118558-11 sun4u sparc SUNW,Sun-Blade-1000). The installing
progress completed without errors, though several warnings like
"Warning: Option -fPIC passed to ld, if ld is invoked, ignored
otherwise" were outputed.
However, when loading the odesolve package by library(odesolve),
following error
2010 May 06
2
help on compile r-2.10.0 on 64 bit window
Hi,
I tried to compile R-2.10.0 src on 64 bit window. After install Rtools and wingw-w64 compiler and put it the first of my PATH variable, but i got the following error when i tried to compile. Anything I missed? thank you.
x86_64-w64-mingw32-gcc -std=gnu99 -I../include -I. -I../extra -DHAVE_CONFIG_H -D
R_DLL_BUILD -O3 -Wall -pedantic -DR_ARCH='"x64"' -c malloc.c -o
2007 Jan 11
1
Installation on CYGWIN Failed (PR#9442)
Hi,
I tried to install R-2.4.1 on cygwin system. "./configure" succeeded, but
make failed. Below, I provide the output from the process: error message,
and info from configure output, in that order. I appreciate that someone can
guide me (technically in-sophisticated) through this process.
Again, thanks for your help.
Michael Niu
(1). Output from make
make[3]:
2006 Mar 29
3
Sub-vector
Dear list,
Given a vector of logical values, say
>a <- c(TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE)
Are there any R functions that can tell whether there are two or more
"TRUE" in a row in this vector?
Thanks,
Wuming
2006 Mar 22
2
R package for computing state path using Viterbi algorithm
Dear list,
This question is about Hidden Markov Model. Given a transition
matrix, an emission matrix and a sequence of observed symbols
(actually, nucleotide sequences, A, T, C and G), I hope to predict the
sequence of state by Viterbi algorithm. I searched R repository for
related packages. msm package has function viterbi.msm (as well as
very good document), but it only works for
2005 Oct 25
3
error from make: gcc -shared -L/usr/local/lib64 ... relocation R_X86_64_32...
I hope someone can point me, a newcomer to building R as well as 64-bit R, in
a useful direction. I have a dual Opteron 275 box running RedHat EL4. I ran
configure successfully, and, then, get the following error while running make:
make[4]: Entering directory `/tmp/R-2.2.0/src/modules/lapack'
g77 -fPIC -g -O2 -ffloat-store -c dlamc.f -o dlamc.lo
g77 -fPIC -g -O2 -c dlapack0.f -o
2004 Jun 10
1
Failure to compile on Itanium
I am trying to compile R on an Itanium machine running Red Hat 7.2 and
gcc version 2.96.
The build fails with the following symptoms:
g77 -fPIC -g -O2 -c cmplx.f -o cmplx.lo
g77 -fPIC -g -O2 -c cmplxblas.f -o cmplxblas.lo
gcc -shared -L/usr/local/lib -o libRlapack.so dlapack0.lo dlapack1.lo
dlapack2.lo dlapack3.lo cmplx.lo cmplxblas.lo -L/usr/local/lib
2002 Apr 18
1
Problem compiling on HP-UX 10.20
I am having a problem compiling R on an HP-UX 10.20 system using gcc/g77
compiler. It appears to compile without problems until it gets to the lapack
module and I get the following error:
gcc -I. -I../../../src/include -I../../../src/include -I/usr/local/include
-DHAVE_CONFIG_H -D_HPUX_SOURCE -fPIC -O2 -c Lapack.c -o Lapack.lo
g77 -fPIC -O2 -c double.f -o double.lo
g77 -fPIC -O2 -c cmplx.f
2012 May 04
1
'Transport endpoint not connected'
This should be a pretty easy issue to reproduce, at least it seems to happen
to me very often. (gluster-3.2.5)
After storage backend(s) have been rebooted, the client mounts are often
broken until you unmount and remount. Example from this morning: I had
rebooted storage servers to upgrade them to ubuntu 12.04. Now at the client
side:
$ ls /gluster/scratch
ls: cannot access /gluster/scratch:
2006 Jul 07
1
Polynomial kernel in SVM in e1071 package
Dear list,
In some places (for example,
http://en.wikipedia.org/wiki/Support_vector_machine) , the polynomail
kernel in SVM is written as (u'*v + 1)^d, while in the document of
svm() in e1071 package, the polynomial kernel is written as
(gamma*u'*v + coef0)^d. I am a little confused here:
When doing parameter optimization (grid search or so) for polynomial
kernel, does it need to tune
2014 Jun 30
1
Building R on Windows: mkdir of Rtools creates directories with read-only permissions [WEIRD]
On Thu Jan 9 2014 03:47 Henrik Bengtsson wrote:
> This is is an issue that bugged me for a while. I encountered a year
> ago (April 2012) when I first tried to build R from source on Windows.
> I never figured out what the solution is or if I'm doing something
> wrong myself (but I have found a tedious workaround). I'm still on
> the same Windows 7 Ultimate machine with
2005 Sep 02
1
Calculating Goodman-Kurskal's gamma using delta method
Dear list,
I have a problem on calculating the standard error of
Goodman-Kurskal's gamma using delta method. I exactly follow the
method and forumla described in Problem 3.27 of Alan Agresti's
Categorical Data Analysis (2nd edition). The data I used is also from
the job satisfaction vs. income example from that book.
job <- matrix(c(1, 3, 10, 6, 2, 3, 10, 7, 1, 6, 14, 12, 0, 1, 9,
2015 Apr 21
2
shlib problems with Intel compiler
Hi,
I'm encountering trouble compiling caTools_1.17.1.tar.gz and e1071_1.6-4.tar.gz on a Linux system using the Intel compiler suite. 14 other packages I generally use installed without any trouble. I notice both of these trouble packages have a C++ component, so I wonder if that might be the issue. Below, there's information on my platform, compiler, and some diagnostic output showing
2004 Dec 09
1
How can I estimate parameters of probability distributions?
Hi list,
I have a group of data. It looks like they follow a exponential
distribution. In R, how can I esimate lamda, that is the rate in pexp,
of the distribution and can I use Kolmogorov-Smirnov for hypothesis
testing in such a situation? I have read the "8.2 Examing the
distribution of a set of data" of "An Introduction to R" but I did not
find any clues on this issue.
2013 Sep 23
1
[PATCH] ns16550: Use correct #define symbol for HAS_IOPORTS
CID 1091471, Regression caused by 7c1de0038895cbc75ebd0caffc5b0f3f03c5ad51
This appears to be a typo which causes check_existence() to unconditionally
return 1 in all cases.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
CC: Keir Frser <keir@xen.org>
CC: Jan Beulich <jbeulich@suse.com>
CC: Ian Campbell <ian.campbell@citrix.com>
---
xen/drivers/char/ns16550.c |
1998 Oct 16
1
Compiling on a Red Hat 5.1 system
I'm feeling kinda stupid right now, but I'm actually having problems
compiling R-0.62.3 on a Red Hat 5.1 Linux system.
I'd be happy if someone could point out for me where to look to fix the
problem. I've included the output from the compiling below. Thanks for
any help.
Fredrik
make -f Makefile.2nd all
make[1]: Entering directory `/home/fredrigl/R-0.62.3'
Building R
cd
2000 Feb 22
1
R-0.99 installation on UNIX
{message bounced because it has "$$$" in it.
manually approved by list maintainer -- MM}
> Date: Tue, 22 Feb 2000 13:03:35 +0100
> From: jens <jniesch at gwdg.de>
>
> I have trouble to install R on Sparc Sun Solaris 2.6.
> make returns the error message:
> Undefined symbol first referenced in file
> d_lg10 ../appl/libappl.a(uncmin.o)
> d_sign
2005 Aug 16
1
Compile failure on OSX
Hi,
I am trying to compile R-2.1.1 on MacOSX 10.3.9, but the make is failing (I
am building it without all the aqua stuff):
./configure --enable-R-shlib --with-lapac
make
.... Snip .....
gcc -dynamiclib -L/sw/lib -L/usr/local/lib -install_name
/Library/Frameworks/R.framework/Versions/2.1.1/Resources/lib/libRlapack.dyli
b -o libRlapack.dylib dlamc.lo dlapack0.lo dlapack1.lo dlapack2.lo
2015 Apr 22
1
shlib problems with Intel compiler
Hi Martyn,
Thanks for your insight, that seems pretty direct. Unfortunately, I did not compile this version of R (it's on a large supercomputer system and this version of R was installed by the admins). Using "R CMD config", I see the following relevant settings:
DYLIB_LD = icc -std=gnu99
DYLIB_LDFLAGS = -shared -openmp
LDFLAGS = -L/opt/compilers/intel/cce/9.1.039/lib
2005 Mar 29
1
final stages of installing R - please help?
Hello,
This morning I downloaded, unzipped, and compiled the latest version of
R for unix, in my HOME/APPLICATIONS directory.
My current unix machine is a sparc-sun-solaris2.9, running SunOS 5.9.
Here are the last few lines of the output following ./configure:
R is now configured for sparc-sun-solaris2.9
Source directory: .
Installation directory: /usr/local
C compiler: