search for: strsignif

Displaying 20 results from an estimated 23 matches for "strsignif".

2008 Jan 25
3
strsignif.c, util.c (PR#10635)
In R 2.6.1, a couple of places (discovered using valgrind) where the requested size of string buffers fails to account correctly for the trailing null byte: 1. In src/appl/strsignif.c, 'f0' and 'form' at l. 108-9 each need at least 1 extra byte. 2. In src/main/util.c, 'out' at l. 1081 needs at least one extra byte. (Remember that the return value of strlen does not include the null byte.) Andrew Runnalls
2000 Apr 24
1
compiling R-1.0.1 under Solaris
...ake[3]: Entering directory `/home/ppp/paradis/R/R-1.0.1/src/appl' cr libappl.a Rsock.o S_compat.o approx.o bakslv.o binning.o chisqsim.o chull.o c poly.o cumsum.o distance.o fft.o fmin.o fortran.o lbfgsb.o loglin.o lowess.o mac har.o massdist.o pretty.o pythag.o rowsum.o sock.o splines.o stem.o strsignif.o tabulate.o uncmin.o zeroin.o ch2inv.o chol.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpo fa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl.o dqrutl.o dsvdc.o dtrco.o dtrsl.o e igen.o lminfl.o blas.o make[3]: cr: Command not found make[3]: *** [libappl.a] Error 127 make[3]: Leaving directory `/home/ppp/paradis/...
2001 Jan 25
1
problems compiling R under digital unix 4.0d (PR#826)
...-O2 -c eigen.f -o eigen.o g77 -mieee -g -O2 -c lminfl.f -o lminfl.o ar cr libappl.a Rsock.o approx.o bakslv.o binning.o chisqsim.o chull.o cpoly.o cumsum.o distance.o fft.o fmin.o fortran.o lbfgsb.o loglin.o lowess.o machar.o maxcol.o massdist.o pretty.o rowsum.o sock.o splines.o stem.o strsignif.o tabulate.o uncmin.o zeroin.o ch2inv.o chol.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl.o dqrutl.o dsvdc.o dtrco.o dtrsl.o eigen.o lminfl.o ranlib libappl.a #make: No such file or directory *** Exit 1 Stop. *** Exit 1 Stop. *** Exit 1 Stop. fenchel:/net...
2005 Mar 29
1
final stages of installing R - please help?
...e last few lines from the 'make' output to the screen: rm -f libappl.a false cr libappl.a approx.o bakslv.o bandwidths.o binning.o chull.o cpoly.o cumsum.o fft.o fmin.o integrate.o interv.o lbfgsb.o loglin.o lowess.o machar.o maxcol.o massdist.o pretty.o rcont.o rowsum.o splines.o stem.o strsignif.o tabulate.o uncmin.o zeroin.o ch2inv.o chol.o dchdc.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl.o dqrutl.o dsvdc.o dtrco.o dtrsl.o eigen.o lminfl.o blas.o zgemm.o make[3]: *** [libappl.a] Error 1 make[3]: Leaving directory `/home/gruen/Applications/R-2.0.1/...
2002 Jan 22
1
compile problem with bessel_i.c on IRIX64 flexor 6.5 10100655 IP35 (uname -a) (PR#1275)
...fgsb.d from lbfgsb.c making loglin.d from loglin.c making lowess.d from lowess.c making machar.d from machar.c making maxcol.d from maxcol.c making massdist.d from massdist.c making pretty.d from pretty.c making rowsum.d from rowsum.c making splines.d from splines.c making stem.d from stem.c making strsignif.d from strsignif.c making tabulate.d from tabulate.c making uncmin.d from uncmin.c making zeroin.d from zeroin.c gcc -I. -I../../src/include -I../../src/include -DHAVE_CONFIG_H -g -O2 -c approx.c -o approx.o gcc -I. -I../../src/include -I../../src/include -DHAVE_CONFIG_H -g -O2 -c bakslv.c...
2000 Oct 31
1
conflicting types for `Rf_stirlerr
...g loglin.d from loglin.c making lowess.d from lowess.c making machar.d from machar.c making maxcol.d from maxcol.c making massdist.d from massdist.c making pretty.d from pretty.c making rowsum.d from rowsum.c making sock.d from sock.c making splines.d from splines.c making stem.d from stem.c making strsignif.d from strsignif.c making tabulate.d from tabulate.c making uncmin.d from uncmin.c making zeroin.d from zeroin.c make[3]: Leaving directory `/home/mfa5/gilp/R-versions/R-devel/src/appl' make[3]: Entering directory `/home/mfa5/gilp/R-versions/R-devel/src/appl' gcc -I. -I../../src/include -I....
1997 Dec 13
1
R-beta: Compile error; R-0.60.1, Solaris 2.6, gcc 2.7.2.1
...-g -I../include -c lowess.c -o lowess.o gcc -g -I../include -c machar.c -o machar.o gcc -g -I../include -c massdist.c -o massdist.o gcc -g -I../include -c pretty.c -o pretty.o gcc -g -I../include -c splines.c -o splines.o gcc -g -I../include -c stem.c -o stem.o gcc -g -I../include -c strsignif.c -o strsignif.o gcc -g -I../include -c tabulate.c -o tabulate.o gcc -g -I../include -c uncmin.c -o uncmin.o gcc -g -I../include -c zeroin.c -o zeroin.o ar cr ../lib/libappl.a approx.o bakslv.o binning.o blas.o zblas.o ch2inv.o chol.o cpoly.o cumsum.o distance.o dpoco.o dpodi.o dpofa.o dposl....
2004 Jun 03
2
returning strings to R from C functions
I'm using .C() and .External() and have no problems sending integers, reals or strings from R to C. Nor do I have problems sending integers or reals back from C to R. But I'm pulling my hair out trying to set a string value in a C function and then sending it back from C to to R. I've searched the usual sources and tried various casts, macros and allocation schemes, but I'm
1999 Jun 09
4
packages with FORTRAN code
Recent sensible changes to the dynload mechanism have made an old problem resurface: how should we deal with packages which contain Fortran code and may need to be linked against additional libraries such as -lf2c? The current consensus is that extra Fortran libraries maybe needed are handled via the make variable FLIBS, and that `-lf2c' or `-lg2c' are added by default if g77 is used.
1999 May 03
1
problems compiling R-0.63.3 on alpha
...inexact -g -I../include -I../../src/include -c rowsum.c -o rowsum.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c splines.c -o splines.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c stem.c -o stem.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c strsignif.c -o strsignif.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c tabulate.c -o tabulate.o f77 -g -fpe3 -c uncmin.f -o uncmin.o f77 -g -fpe3 -c zeroin.f -o zeroin.o ar cr libappl.a S_compat.o approx.o bakslv.o binning.o ch2inv.o chol.o cpoly.o cumsum.o distance.o dpoco.o dpodi.o d...
2005 Nov 22
2
(PR#8337) formatC adds leading space -- on some Windoze
>>>>> "KevinW" == Kevin Wright <kwright68 at gmail.com> >>>>> on Mon, 21 Nov 2005 18:13:36 +0100 (CET) writes: KevinW> Full_Name: Kevin Wright KevinW> Version: 2.2.0 KevinW> OS: Windows 2000 ^^^^^^^ this must be part of the problem KevinW> Submission from: (NULL) (170.54.58.4) KevinW> Apologies if
1998 Nov 06
1
DEC alpha INSTALLATION R-0.62.4
...lude -c machar.c cc -ieee_with_inexact -g -I../../src/include -c massdist.c cc -ieee_with_inexact -g -I../../src/include -c pretty.c cc -ieee_with_inexact -g -I../../src/include -c splines.c cc -ieee_with_inexact -g -I../../src/include -c stem.c cc -ieee_with_inexact -g -I../../src/include -c strsignif.c cc -ieee_with_inexact -g -I../../src/include -c tabulate.c f77 -c uncmin.f -o uncmin.o f77 -c zeroin.f -o zeroin.o ar cr ../lib/libappl.a approx.o bakslv.o binning.o blas.o ch2inv.o chol.o cpoly.o cumsum.o distance.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrs...
1999 May 03
0
compilation of R-0.63.3 on alpha (PR#183)
...-I../include -I../../src/include -c rowsum.c -= o = rowsum.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c splines.c = -o = splines.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c stem.c -o = stem.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c strsignif.= c -o = strsignif.o gcc -ieee_with_inexact -g -I../include -I../../src/include -c tabulate.c= -o = tabulate.o f77 -g -fpe3 -c uncmin.f -o uncmin.o f77 -g -fpe3 -c zeroin.f -o zeroin.o ar cr libappl.a S_compat.o approx.o bakslv.o binning.o ch2inv.o chol.o = cpoly.o cumsum.o distance.o dpoco.o...
2001 Nov 07
1
segmentation fault with GCC 3.0.2
...rox.o ... g77 -g -O2 -c eigen.f -o eigen.o g77 -g -O2 -c lminfl.f -o lminfl.o g77 -g -O2 -c blas.f -o blas.o ar cr libappl.a approx.o bakslv.o binning.o chull.o cpoly.o cumsum.o fft.o fmin.o integrate.o lbfgsb.o loglin.o lowess.o machar.o maxcol.o massdist.o pretty.o rowsum.o splines.o stem.o strsignif.o tabulate.o uncmin.o zeroin.o ch2inv.o chol.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl.o dqrutl.o dsvdc.o dtrco.o dtrsl.o eigen.o lminfl.o blas.o ranlib libappl.a make[3]: Leaving directory `/home/mfa5/gilp/R/R-1.3.1.gnu3.0.2/src/appl' make[2]: Leaving dir...
1998 Dec 08
0
R compile problems with AIX
...e -I../../src/include -c pythag.c -o pythag.o gcc -g -O2 -I../include -I../../src/include -c rowsum.c -o rowsum.o gcc -g -O2 -I../include -I../../src/include -c splines.c -o splines.o gcc -g -O2 -I../include -I../../src/include -c stem.c -o stem.o gcc -g -O2 -I../include -I../../src/include -c strsignif.c -o strsignif.o gcc -g -O2 -I../include -I../../src/include -c tabulate.c -o tabulate.o f77 -c uncmin.f -o uncmin.o f77 -c zeroin.f -o zeroin.o ar cr libappl.a approx.o bakslv.o binning.o ch2inv.o chol.o cpoly.o cumsum.o distance.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl...
1998 Dec 08
0
R compile problems with AIX
...e -I../../src/include -c pythag.c -o pythag.o gcc -g -O2 -I../include -I../../src/include -c rowsum.c -o rowsum.o gcc -g -O2 -I../include -I../../src/include -c splines.c -o splines.o gcc -g -O2 -I../include -I../../src/include -c stem.c -o stem.o gcc -g -O2 -I../include -I../../src/include -c strsignif.c -o strsignif.o gcc -g -O2 -I../include -I../../src/include -c tabulate.c -o tabulate.o f77 -c uncmin.f -o uncmin.o f77 -c zeroin.f -o zeroin.o ar cr libappl.a approx.o bakslv.o binning.o ch2inv.o chol.o cpoly.o cumsum.o distance.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o dqrdc2.o dqrls.o dqrsl...
2001 Jul 25
2
Installation help
...fgsb.d from lbfgsb.c making loglin.d from loglin.c making lowess.d from lowess.c making machar.d from machar.c making maxcol.d from maxcol.c making massdist.d from massdist.c making pretty.d from pretty.c making rowsum.d from rowsum.c making splines.d from splines.c making stem.d from stem.c making strsignif.d from strsignif.c making tabulate.d from tabulate.c making uncmin.d from uncmin.c making zeroin.d from zeroin.c gmake[3]: Leaving directory `/home/netlj/Software/R-1.3.0/src/appl' gmake[3]: Entering directory `/home/netlj/Software/R-1.3.0/src/appl' cc -I. -I../../src/include -I../../src/in...
1998 Sep 11
1
R-beta: cannot make R
...f77 -c lminfl.f -o lminfl.o lminfl.f: lminfl: gcc -g -O2 -I../include -c lowess.c gcc -g -O2 -I../include -c machar.c gcc -g -O2 -I../include -c massdist.c gcc -g -O2 -I../include -c pretty.c gcc -g -O2 -I../include -c splines.c gcc -g -O2 -I../include -c stem.c gcc -g -O2 -I../include -c strsignif.c gcc -g -O2 -I../include -c tabulate.c f77 -c uncmin.f -o uncmin.o uncmin.f: fdhess: bakslv: chlhsn: choldc: d1fcn: d2fcn: dfault: dogdrv: dogstp: forslv: fstocd: fstofd: grdchk: heschk...
2012 Aug 11
2
compile fails with x86_64-alpine-linux-uclibc-gcc
...ing fmin.d from fmin.c making integrate.d from integrate.c making interv.d from interv.c making lbfgsb.d from lbfgsb.c making machar.d from machar.c making maxcol.d from maxcol.c making pretty.d from pretty.c making rcont.d from rcont.c making rowsum.d from rowsum.c making stem.d from stem.c making strsignif.d from strsignif.c making tabulate.d from tabulate.c making uncmin.d from uncmin.c making zeroin.d from zeroin.c make[3]: Leaving directory `/dev/shm/portage/dev-lang/R-2.15.1/work/R-2.15.1/src/appl' make[3]: Entering directory `/dev/shm/portage/dev-lang/R-2.15.1/work/R-2.15.1/src/appl' x86...
2008 Dec 22
1
Error compiling R.2.8.1 with gcc 4.4 on Mac OS 10.5.6
...aking integrate.d from integrate.c making fft.d from fft.c making interv.d from interv.c making lbfgsb.d from lbfgsb.c making maxcol.d from maxcol.c making machar.d from machar.c making pretty.d from pretty.c making rcont.d from rcont.c making rowsum.d from rowsum.c making stem.d from stem.c making strsignif.d from strsignif.c making tabulate.d from tabulate.c making uncmin.d from uncmin.c making zeroin.d from zeroin.c gcc -std=gnu99 -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -fPIC -g -O2 -c bakslv.c -o bakslv.o gcc -std=gnu99 -I. -I../../src/include -I../../src...