search for: sources_f

Displaying 3 results from an estimated 3 matches for "sources_f".

Did you mean: sources_c
2001 Dec 08
2
Building under IRIX 6.5 (report)
...---------- The patch: msm4:/usr/local/src/R-1.3.1/src/modules/lapack% diff -u Makefile.o Makefile --- Makefile.o Sat Dec 8 19:23:32 2001 +++ Makefile Sat Dec 8 19:27:26 2001 @@ -19,7 +19,7 @@ SOURCES_BLAS = blas2.f cmplxblas.f DEPENDS = $(SOURCES_C:.c=.d) -OBJECTS = $(SOURCES_C:.c=.lo) $(SOURCES_F:.f=.lo) \ +OBJECTS = $(SOURCES_C:.c=.lo) $(SOURCES_F:.f=.lo) # $(SOURCES_BLAS:.f=.lo) HEADERS = Lapack.h ------------ make stops with the following error: "cmplx.f", line 19283: warning(2290): actual argument is incompatible with dummy argument CALL ZLARFB(...
2005 Apr 07
0
R 2.1.0 (beta) on IRIX
...er flag -OPT:IEEE_NaN_inf=ON is supposed to enforce IEEE arithmetic but apparently isn't enough. Minor problems -------------- 3) Make IRIX make does not like continuation lines followed only by a comment. So, for example, these lines from src/appl/Makefile.in OBJECTS = $(SOURCES_C:.c=.o) $(SOURCES_F:.f=.o)\ @USE_EXTERNAL_BLAS_FALSE@ blas.o @COMPILE_DOUBLE_COMPLEX_FALSE@ zgemm.o which become OBJECTS = $(SOURCES_C:.c=.o) $(SOURCES_F:.f=.o) \ # blas.o zgemm.o in the Makefile, cause an error. I have worked around this by joining the two lines, but the problem recurs several times in the tests...
2002 Feb 20
1
Pivoting in chol
...in Splus). I thought R-core might consider including this in the next version of R, so I give below the steps required to facilitate this. 1. Copied Linpack routine "dchdc.f" into src/appl 2. Inserted line F77_SUBROUTINE(dchdc) in src/appl/ROUTINES 3. Inserted "dchdc.f" into SOURCES_F in appl/Makefile.in 4. Modifed src/library/base/R/chol.R (attached) and src/library/base/man/chol.Rd (also attached) 5. Tidied up. Removed "chol.f", "dpoco.f" and "dposl.f" from src/appl/Makefile.in, src/appl/ROUTINES, src/include/R_ext/Applic.h, src/include/R_ext/...