Displaying 20 results from an estimated 1000 matches similar to: "make: sockconn.c; make check: eval-etc.R; make install: $(EXPORTFILES) (PR#8809)"
2001 Jun 29
3
Fail to build R (PR#1005)
Full_Name: Ziying Sherwin
Version: 1.3.0
OS: Solaris 2.8
Submission from: (NULL) (130.14.31.32)
We tried to install R on our Sun Solaris 2.8 machine using gcc 3.0. During the
compilation,
we got error messages like:
gcc -I. -I../../../src/include -I../../../src/include -I/usr/local/include
-DHAVE_CONFIG_H -g -O2 -c sockconn.c -o sockconn.o
gcc -shared -o internet.so Rsock.o internet.o
2003 Apr 20
1
R 1.7.0 fails to compile on OS X 10.2.5
Hello -
I'm trying to compile R 1.7.0 on a PowerBook running OS X 10.2.5. I've
compiled R (1.6.2) successfully before on this machine, under either
10.2.3 or 10.2.4. My gcc is from the latest Apple Developer Tools
release and the g77 is up-to-date via Fink. R passes ./configure just
fine, with the following options:
R is now configured for powerpc-apple-darwin6.5
Source
2006 May 22
3
ssize_t not defined in sockconn.c (PR#8889)
Problem:
Build of R failed when compiling sockconn.c. The problem seemed to be
that ssize_t was not defined.
The following change in sock.h fixes the problem, though it's probably
not fixed the _right_ way.
/* Following line changed by WTR (Cira) to overcome make problem.
#if defined Win32 && !defined _SSIZE_T_
typedef int ssize_t;
#endif
*/
typedef int ssize_t;
Thanks!
Wade
2006 May 19
1
make error for R-2.3.0
Hello,
I'm trying to install R on a linux machine running Red Hat 8. I ran
./configure
make
and get the following error. I've installed several versions of R (2.2.1
most recently) on this machine and haven't had any problems until now. I
wondered if the outdated compiler (gcc version 3.2) was the problem and
attempted to install my own, more recent version. I tried gcc versions 4.1.0
2003 Apr 12
0
compiling R in 64-bit mode on Linux on Power4
Hi all,
today I tried to compile R in 64-bit mode on Linux on Power4. I used the
following parameter with configure.
./configure -without-x CC='xlC' F77='xlf' CXX='xlC' CFLAGS='-q64 -g
-qfullpath' FFLAGS='-q64 -g -qfullpath' CXXFLAGS='-q64 -g -qfullpath'
MAIN_LDFLAGS='-q64 -g -qfullpath' LDFLAGS='-q64' SHLIB_CXXLDFLAGS='-q64
2001 Oct 24
0
Re: Compiling R v 1.3.1 under Irix 6.5 on SGI Origin
Hello Laurent, Ray and Greg,
I tried the gmake settings.
Yet, I still got an Error code 1 message when I run the test.
running regression tests
don't know how to make ../library/base/R/base (bu42).
*** Error code 1 (bu21)
Thanks you if you have any idea.
Manuel
-----Message d'origine-----
De : Laurent Gautier [ mailto:laurent at genome.cbs.dtu.dk
<mailto:laurent at
2006 Jan 27
1
R compile on AIX 5.2
Fellow R Enthusiasts..
I'm trying to compile R on AIX 5.2 32bit with gcc 3.3.2-5. I've
tried both the development bundle R-devel_2006-01-25.tar.gz and the
R-beta.tar.gz from about a month ago. In each instance, I'm using the
following options prior to running "./configure --prefix=/usr/local/R":
OBJECT_MODE=32
MAIN_LDFLAGS=-Wl,-brtl
SHLIB_LDFLAGS=-Wl,-G
2006 Jan 27
1
R compile on AIX 5.2
Fellow R Enthusiasts..
I'm trying to compile R on AIX 5.2 32bit with gcc 3.3.2-5. I've
tried both the development bundle R-devel_2006-01-25.tar.gz and the
R-beta.tar.gz from about a month ago. In each instance, I'm using the
following options prior to running "./configure --prefix=/usr/local/R":
OBJECT_MODE=32
MAIN_LDFLAGS=-Wl,-brtl
SHLIB_LDFLAGS=-Wl,-G
2008 Apr 27
2
R_DEFAULT_DEVICE (PR#11294)
Setting enviroment variable R_DEFAULT_DEVICE causes an error.
The patch below fixes this.
I guess the same goes for R_INTERACTIVE_DEVICE.
--- R-2.7.0/src/library/grDevices/R/zzz.R 2008-04-27 13:49:11.000000000 +0200
+++ R-2.7.0/src/library/grDevices/R/zzz.R.new 2008-04-27 13:59:37.000000000 +0200
@@ -22,7 +22,7 @@
extras <- if(.Platform$OS.type == "windows")
2006 Oct 31
4
'make check' fails on d-p-q-r-tests (PR#9326)
'make check' fails on d-p-q-r-tests:
> ##-- non central Chi^2 :
> xB <- c(2000,1e6,1e50,Inf)
> for(df in c(0.1, 1, 10))
+ for(ncp in c(0, 1, 10, 100)) stopifnot(pchisq(xB, df=df, ncp=ncp) == 1)
Error: pchisq(xB, df = df, ncp = ncp) == 1 is not all TRUE
Execution halted
Here is some more testing:
xB <- c(2000,1e6,1e50,Inf)
for(df in c(0.1, 1, 10)) for(ncp in c(0, 1,
2014 Nov 19
0
nchar reporting wrong width when zero-space character is present?
Dear list,
If I include the zero-width non-breaking space (\ufeff) in a string,
nchar seems to compute the wrong number of columns used by 'cat'.
> x <- "f\ufeffoo"
> x
[1] "f?oo"
> nchar(x,type="width")
[1] 2
I would expect "3" here. Going through the documentation of 'Encoding'
and 'encodeString', I don't think
2011 Oct 13
1
Package snow: is there any way to check if a cluster is "acticve"
Is there a 'proper' way of checking if cluster is active. For example, I create a cluster called .PBcluster
> str(.PBcluster)
List of 4
$ :List of 3
..$ con :Classes 'sockconn', 'connection' atomic [1:1] 3
.. .. ..- attr(*, "conn_id")=<externalptr>
..$ host: chr "localhost"
..$ rank: int 1
..- attr(*, "class")= chr
2015 Nov 30
0
Inconsistency in treating NaN-results?
R and the S language that it is based on has evolved as much as it has
been designed, so there are often inconsistencies due similar
functionality evolving from different paths. In some cases these
inconsistencies are resolved, but generally only once someone notices
and care enough to do something about it. In some other cases the
inconsistencies are left for historical reasons and for back
2017 Sep 04
0
readLines() segfaults on large file & question on how to work around
Although the problem can apparently be avoided in this case. readLines
causing a segfault still seems unwanted behaviour to me. I can replicate
this with the example below (sessionInfo is further down):
# Generate an example file
l <- paste0(sample(c(letters, LETTERS), 1E6, replace = TRUE),
collapse="")
con <- file("test.txt", "wt")
for (i in
2005 Dec 12
0
Real time in ARM - please help
Thanks for the advice. With complexity=1, bit rates 5950,8000 and 15000 (CBR
only), I'm still getting 30-50 seconds encoding time for a 10-second file.
To anyone who has made this work in ARMv4, or knows how to, can I get some
advice on the settings? FIXED_POINT is already defined in all relevant
files. My source code is patterned after sampleenc and I haven't tried using
Ogg.. my source
2012 Apr 12
2
backup to NTFS USB disk
Hello, *
I am setting up a backup on a Linux system with Windows XP workstations. The
backup goes to three alternating usb drives, each of which is NTFS formatted.
The disks should be virtually identical but they do not seem to be.
First, my mount command is this (I edited a bit for brevity)
mount -t ntfs-3g -o locale=nl_NL.iso-8859-1,silent /dev/disk/by-id/usb-DiskA \
/mnt/tmp ||
mount -t
2015 Nov 26
2
Inconsistency in treating NaN-results?
This question is more out of curiosity than a complaint or suggestion, but
I'm just wondering.
The behavior of R on calculations that result in NaN seems a bit
inconsistent.
# this is expected:
> 0/0
[1] NaN
# but this gives a warning
> sin(Inf)
[1] NaN
Warning message:
In sin(Inf) : NaNs produced
# and this again does not
> exp(NaN)
[1] NaN
Conceptually, I like to think that R
2012 Mar 14
0
Audio file is corrupted after decoding
I successfully encoded and decoded a wav file of PCM 16 , MONO and with
sample rate 8000 in Android OS. The size of the original wav file and
decoded file is near.
But i am not able to play the decoded audio file, the mediaplayer says
that the file has been corrupted.
ENCODING:
#include <jni.h>
#include <stdio.h>
#include "speex/speex.h"
#define FRAME_SIZE 320
void
2018 Mar 16
0
Apparent bug in behavior of formulas with '-' operator for lm
It's not a bug per se. It's the effect of removing all observations linked
to a certain level in your data frame. So the output of lm() doesn't
contain a coefficient for level a of z, but your new data contains that
level a. With a small addition, this works again:
d <- data.frame(x=rnorm(12),y=rnorm(12),z=rep(letters[1:6],2))
d$x[1] <- NA
m <- lm(x ~ . -z, data=d)
p <-
2015 Dec 16
0
Mystifying SEGFAULT on 3.2.3 but not 3.2.2
Gert,
On 16 December 2015 at 12:06, Gert van Valkenhoef wrote:
| I recently upgraded to 3.2.3 and am getting mystifying errors with my
| in-development code (available at
| https://github.com/gertvv/gemtc/tree/feature/regression). Every few hundred
| LPs that I solve using the rcdd package will result in a SEGFAULT in the
| garbage collector (address 0x10, cause 'memory not mapped') or an